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

Required Methods§

source

fn next(&self) -> Self

Implementors§