Skip to main content

ArrayVecExt

Trait ArrayVecExt 

Source
pub trait ArrayVecExt<T> {
    // Required method
    fn extend_from_slice(&mut self, other: &[T]) -> &mut Self;
}

Required Methods§

Source

fn extend_from_slice(&mut self, other: &[T]) -> &mut Self

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<T: Copy, const CAP: usize> ArrayVecExt<T> for ArrayVec<T, CAP>

Source§

fn extend_from_slice(&mut self, other: &[T]) -> &mut Self

Implementors§