pub trait StrongType: Debug + PartialEq + PartialOrd + Clone + Default + Send + Sync {
    type UnderlyingType: Default;
}

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementors§