pub trait SequenceNumber: Clone {
    fn root() -> Self;
    fn next_child(&mut self) -> Self;

    fn skip(&mut self, count: usize) { ... }
}

Required Methods

Provided Methods

Implementors