Trait nodit::gqdit::IdType

source ·
pub trait IdType: Eq + Ord + Copy { }
Expand description

The marker trait for valid id types, a blanket implementation is provided for all types which implement this traits’ super-traits so you shouln’t need to implement this yourself.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<D> IdType for D
where D: Eq + Ord + Copy,