Trait PartialOrdIdentifier

Source
pub trait PartialOrdIdentifier: Identifier + PartialOrd { }
Expand description

The PartialOrdIdentity trait represents data which can be used for concurrent actions. Given two such identifiers, we can tell if they are equal and we could potentially compare them.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> PartialOrdIdentifier for T
where T: Eq + PartialOrd,