pub trait Annexable {
    type NewItem;
    fn push_annex(&mut self, item: Self::NewItem) -> Annex<'_, Self>
    where
        Self: Sized
;
fn revert_annex(&mut self); }

Associated Types

Required methods

Implementations on Foreign Types

Implementors