pub trait LinkElem {
    type LinkIndex: Copy;

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

Required Associated Types§

Required Methods§

source

fn next(elem: &Self) -> Option<Self::LinkIndex>

Object Safety§

This trait is not object safe.

Implementors§