Enum ixlist::Seek [] [src]

pub enum Seek {
    Forward(usize),
    Backward(usize),
    Head,
    Tail,
}

Variants

Forward

Seek forward n steps, or at most to the end.

Backward

Seek backward n steps, or at most to the beginning.

Head

Seek to the beginning.

Tail

Seek to the end.

Trait Implementations

Derived Implementations

impl Debug for Seek

fn fmt(&self, __arg_0: &mut Formatter) -> Result

impl Ord for Seek

fn cmp(&self, __arg_0: &Seek) -> Ordering

impl PartialOrd for Seek

fn partial_cmp(&self, __arg_0: &Seek) -> Option<Ordering>

fn lt(&self, __arg_0: &Seek) -> bool

fn le(&self, __arg_0: &Seek) -> bool

fn gt(&self, __arg_0: &Seek) -> bool

fn ge(&self, __arg_0: &Seek) -> bool

impl Eq for Seek

impl PartialEq for Seek

fn eq(&self, __arg_0: &Seek) -> bool

fn ne(&self, __arg_0: &Seek) -> bool

impl Clone for Seek

fn clone(&self) -> Seek

fn clone_from(&mut self, source: &Self)

impl Copy for Seek