pub trait Container {
    fn element_names(&self) -> Box<dyn Iterator<Item = String>>;
}

Required Methods

Implementors