pub trait Links {
    type LinkIndex: Copy;

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

Required Associated Types§

Required Methods§

source

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

Implementations on Foreign Types§

§

type LinkIndex = <Ls as Links>::LinkIndex

source§

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

§

type LinkIndex = L

source§

fn next(links: &Self, index: L) -> Option<L>

Implementors§