Trait general_pub_sub::UniqueIdentifier[][src]

pub trait UniqueIdentifier: Ord + Eq + Hash { }

A Unique Identifier

The “unique” aspect of this trait is enforced within the PubSub itself. However, in addition to being unique, the identifier must implement (or derive) core::cmp::Ord and std::hash::Hash.

Implementors

impl<TIdentifier: Ord + Hash> UniqueIdentifier for TIdentifier[src]

Loading content...