rustc_middle::ty::inherent

Trait SliceLike

Source
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])>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

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

Source§

type Item = <S as SliceLike>::Item

Source§

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,

Source§

type Item = T

Source§

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,

Source§

type Item = T

Source§

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

Source§

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

Source§

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

Implementors§

Source§

impl<'a, H, T: Copy> SliceLike for &'a RawList<H, T>

Source§

type Item = T

Source§

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