1
2
3
4
5
6
use std::fmt::Debug;
pub use strong_type_derive::StrongType;

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