Trait ArrayLike

Source
pub trait ArrayLike:
    Deref<Target = [Self::Element]>
    + DerefMut
    + Debug
    + Sync
    + Send {
    type Element: ElementType;
}

Required Associated Types§

Implementations on Foreign Types§

Source§

impl<E> ArrayLike for Vec<E>
where E: ElementType + 'static,

Implementors§