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: ElementType + 'static> ArrayLike for Vec<E>

Implementors§