pub trait Position: Clone {
    type Offset: Ord;

    fn offset(&self) -> Self::Offset;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors