pub trait ChainLength: Eq + Ord + Clone + Debug {
    fn next(&self) -> Self;
}

Required Methods

Implementors