Trait cc_traits::BackMut[][src]

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

Collection exposing a mutable reference to its back element.

Required methods

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...