pub trait SliceLike: Sized + Copy {
    type Item: Copy;
    type IntoIter: Iterator<Item = Self::Item>;

    // Required methods
    fn iter(self) -> Self::IntoIter;
    fn as_slice(&self) -> &[Self::Item];

    // Provided methods
    fn get(self, idx: usize) -> Option<Self::Item> { ... }
    fn len(self) -> usize { ... }
    fn is_empty(self) -> bool { ... }
    fn contains(self, t: &Self::Item) -> bool
       where Self::Item: PartialEq { ... }
    fn to_vec(self) -> Vec<Self::Item> { ... }
    fn last(self) -> Option<Self::Item> { ... }
    fn split_last(&self) -> Option<(&Self::Item, &[Self::Item])> { ... }
}

Required Associated Types§

source

type Item: Copy

source

type IntoIter: Iterator<Item = Self::Item>

Required Methods§

source

fn iter(self) -> Self::IntoIter

source

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

Provided Methods§

source

fn get(self, idx: usize) -> Option<Self::Item>

source

fn len(self) -> usize

source

fn is_empty(self) -> bool

source

fn contains(self, t: &Self::Item) -> bool
where Self::Item: PartialEq,

source

fn to_vec(self) -> Vec<Self::Item>

source

fn last(self) -> Option<Self::Item>

source

fn split_last(&self) -> Option<(&Self::Item, &[Self::Item])>

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<'a, S> SliceLike for &'a S
where S: SliceLike,

§

type Item = <S as SliceLike>::Item

§

type IntoIter = <S as SliceLike>::IntoIter

source§

fn iter(self) -> <S as SliceLike>::IntoIter

source§

fn as_slice(&self) -> &[<S as SliceLike>::Item]

source§

impl<'a, T> SliceLike for &'a [T]
where T: Copy,

§

type Item = T

§

type IntoIter = Copied<Iter<'a, T>>

source§

fn iter(self) -> Copied<Iter<'a, T>>

source§

fn as_slice(&self) -> &[T]

source§

impl<'a, T, const N: usize> SliceLike for &'a [T; N]
where T: Copy,

§

type Item = T

§

type IntoIter = Copied<Iter<'a, T>>

source§

fn iter(self) -> Copied<Iter<'a, T>>

source§

fn as_slice(&self) -> &[T]

Implementors§