[][src]Trait cl_traits::Push

pub trait Push<T> {
    type PushRet;
    fn push(&mut self, elem: T) -> Self::PushRet;
}

Has some way to push an element into some sort of storage.

Associated Types

type PushRet

Return type for the push` method.

Loading content...

Required methods

fn push(&mut self, elem: T) -> Self::PushRet

Pushes an element

Loading content...

Implementors

Loading content...