Trait libreda_db::traits::IdType

source ·
pub trait IdType: Debug + Clone + Eq + Hash + 'static { }
Expand description

Trait used for identifier types.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T> IdType for T
where T: Debug + Clone + Eq + Hash + 'static,