Trait cc_traits::FrontMut[][src]

pub trait FrontMut: Collection {
    fn front_mut(&mut self) -> Option<&mut Self::Item>;
}

Collection exposing a mutable reference to its front element.

Required methods

fn front_mut(&mut self) -> Option<&mut Self::Item>[src]

Get a mutable reference to the front element of the collection.

Loading content...

Implementations on Foreign Types

impl<T> FrontMut for Vec<T>[src]

impl<T> FrontMut for VecDeque<T>[src]

Loading content...

Implementors

Loading content...