[src]

Trait std::container::Mutable

pub trait Mutable: Container {
    fn clear(&mut self);
}

A trait to represent mutable containers

Required Methods

fn clear(&mut self)

Clear the container, removing all values.

Implementors