[][src]Trait type_vec::impls::PushImpl

pub trait PushImpl<Input, Item> {
    type Output;
    fn impl_push(input: Input, elem: Item) -> Self::Output;
}

Implements vector appending.

Associated Types

type Output

Loading content...

Required methods

fn impl_push(input: Input, elem: Item) -> Self::Output

Loading content...

Implementations on Foreign Types

impl<T, S> PushImpl<Vect<T, S>, T> for () where
    S: Size,
    (): Push<Vect<T, S>>,
    PushOp<Vect<T, S>>: VectFactory<T>, 
[src]

type Output = PushOp<Vect<T, S>>

Loading content...

Implementors

Loading content...