Trait as_slice::AsSlice

source ·
pub trait AsSlice {
    type Element;

    fn as_slice(&self) -> &[Self::Element];
}
Expand description

Something that can be seen as an immutable slice

NOTE: This trait is implemented for arrays ([T; N]) of sizes 0 to 256 (inclusive). These implementations don’t show in the documentation because they would reduce readability.

Required Associated Types§

The element type of the slice view

Required Methods§

Returns the immutable slice view of Self

Implementations on Foreign Types§

Implementors§