pub trait ReceiveIdx<Idx, O> {
    // Required method
    fn push(self, idx: Idx) -> O;
}

Required Methods§

source

fn push(self, idx: Idx) -> O

Implementors§

source§

impl<Idx, IdO: PrimInt> ReceiveIdx<Idx, Position<PathBuf, IdO>> for Position<PathBuf, IdO>