ExtendFromSlice

Trait ExtendFromSlice 

Source
pub trait ExtendFromSlice {
    type Item;

    // Required method
    fn extend_from_slice(&mut self, other: &[Self::Item]);
}

Required Associated Types§

Required Methods§

Source

fn extend_from_slice(&mut self, other: &[Self::Item])

Implementations on Foreign Types§

Source§

impl<T: Clone> ExtendFromSlice for Vec<T>

Source§

type Item = T

Source§

fn extend_from_slice(&mut self, other: &[Self::Item])

Implementors§

Source§

impl<S, N> ExtendFromSlice for UniChunked<S, U<N>>
where S: Set + ExtendFromSlice<Item = <S as Set>::Elem>, N: Unsigned + Array<<S as Set>::Elem>, <S as Set>::Elem: Pod,

Source§

type Item = <N as Array<<S as Set>::Elem>>::Array