Trait as_slice::AsSlice[][src]

pub trait AsSlice {
    type Element;
    fn as_slice(&self) -> &[Self::Element];
}

Something that can be seen as an immutable slice

Associated Types

type Element[src]

The element type of the slice view

Loading content...

Required methods

fn as_slice(&self) -> &[Self::Element][src]

Returns the immutable slice view of Self

Loading content...

Implementors

impl<'a, S: ?Sized> AsSlice for &'a S where
    S: AsSlice
[src]

type Element = S::Element

impl<'a, S: ?Sized> AsSlice for &'a mut S where
    S: AsSlice
[src]

type Element = S::Element

impl<T> AsSlice for [T][src]

type Element = T

impl<T, const N: usize> AsSlice for [T; N][src]

type Element = T

Loading content...