[][src]Trait cc_traits::BackMut

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

Collection exposing a mutable reference to its back element.

Required methods

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

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

Loading content...

Implementations on Foreign Types

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

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

Loading content...

Implementors

Loading content...