pub trait Spec: Default + Debug + Clone + PartialEq<Self> {
    type Status: Status;
    type Owner: Spec;
    type IndexKey: Debug + Eq + Hash + Clone + ToString;

    const LABEL: &'static str;
}

Required Associated Types

Required Associated Constants

Implementors

this is not real spec but is there to allow passing of parameters