[][src]Trait type_vec::impls::InsertImpl

pub trait InsertImpl<Input, Index, Item> {
    type Output;
    fn impl_insert(input: Input, index: Index, item: Item) -> Self::Output;
}

Implements element insertion to a vector.

Associated Types

type Output

Loading content...

Required methods

fn impl_insert(input: Input, index: Index, item: Item) -> Self::Output

Loading content...

Implementations on Foreign Types

impl<S, Index, Item> InsertImpl<Vect<Item, S>, Index, Item> for () where
    S: Size,
    Index: Size,
    (): IncreaseOne<S> + CheckIndexInclusive<S, Index>, 
[src]

type Output = Vect<Item, IncreaseOneOp<S>>

Loading content...

Implementors

Loading content...