Trait timely::order::Empty

source ·
pub trait Empty: PartialOrder { }
Expand description

A type that does not affect total orderedness.

This trait is not useful, but must be made public and documented or else Rust complains about its existence in the constraints on the implementation of public traits for public types.

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl Empty for ()

source§

impl<T1: Empty, T2: Empty> Empty for (T1, T2)

Implementors§

source§

impl<T1: Empty, T2: Empty> Empty for Product<T1, T2>