pub trait Links {
    type LinkIndex: Copy;

    fn next(links: &Self, index: Self::LinkIndex) -> Option<Self::LinkIndex>;
}

Required Associated Types

Required Methods

Implementations on Foreign Types

Implementors