Trait Shift

Source
pub trait Shift<T> {
    // Required method
    fn shift(&mut self) -> Option<T>;
}

Required Methods§

Source

fn shift(&mut self) -> Option<T>

Implementations on Foreign Types§

Source§

impl<T> Shift<T> for Vec<T>

Source§

fn shift(&mut self) -> Option<T>

Implementors§