pub trait Datum: Clone + Send + Sync + Debug + Display + Default + 'static + PartialEq<Self> {
    fn name() -> &'static str;
    fn datum_type() -> DatumType;
}

Required Methods§

Implementations on Foreign Types§

Implementors§