[][src]Trait at_collection::AtCollection

pub trait AtCollection<T> where
    Self: Sized
{ fn as_slice(&self) -> &[T];
fn as_vec(self) -> Vec<T>; fn into_iter(self) -> IntoIter<T> { ... }
fn iter(&self) -> Iter<T> { ... } }

Required methods

fn as_slice(&self) -> &[T]

fn as_vec(self) -> Vec<T>

Loading content...

Provided methods

fn into_iter(self) -> IntoIter<T>

fn iter(&self) -> Iter<T>

Loading content...

Implementors

impl<T> AtCollection<T> for AtLeastFour<T>[src]

impl<T> AtCollection<T> for AtLeastOne<T>[src]

impl<T> AtCollection<T> for AtLeastThree<T>[src]

impl<T> AtCollection<T> for AtLeastTwo<T>[src]

impl<T> AtCollection<T> for AtMostOne<T>[src]

impl<T> AtCollection<T> for AtMostThree<T>[src]

impl<T> AtCollection<T> for AtMostTwo<T>[src]

Loading content...