[][src]Struct len_constraints::slice_mut::RangedMut

pub struct RangedMut<'a, T, Start: TypeNum, End: TypeNum> { /* fields omitted */ }

An immutable slice with a range as length constraint

Methods

impl<'a, T, Start: TypeNum, End: TypeNum> RangedMut<'a, T, Start, End>[src]

pub fn len(&self) -> usize[src]

The length of the constrained slice

pub fn slice(&self) -> &[T][src]

The constrained slice

pub fn slice_mut(&mut self) -> &mut [T][src]

The mutable constrained slice

Trait Implementations

impl<'a, T, Start: TypeNum, End: TypeNum> AsRef<[T]> for RangedMut<'a, T, Start, End>[src]

impl<'a, T, Start: TypeNum, End: TypeNum> Into<&'a [T]> for RangedMut<'a, T, Start, End>[src]

impl<'a, T, Start: TypeNum, End: TypeNum> Into<&'a mut [T]> for RangedMut<'a, T, Start, End>[src]

impl<'a, T, Start: TypeNum, End: TypeNum> AsMut<[T]> for RangedMut<'a, T, Start, End>[src]

impl<'a, T, Start: TypeNum, End: TypeNum> Deref for RangedMut<'a, T, Start, End>[src]

type Target = [T]

The resulting type after dereferencing.

impl<'a, T: Debug, Start: Debug + TypeNum, End: Debug + TypeNum> Debug for RangedMut<'a, T, Start, End>[src]

impl<'a, T, Start: TypeNum, End: TypeNum> TryFrom<&'a mut [T]> for RangedMut<'a, T, Start, End>[src]

type Error = Box<dyn Error + 'static>

The type returned in the event of a conversion error.

fn try_from(slice: &'a mut [T]) -> Result<Self, Self::Error>[src]

Validates slice against the length constraint and creates the constrained slice with it

impl<'a, T, Start: TypeNum, End: TypeNum> DerefMut for RangedMut<'a, T, Start, End>[src]

impl<'a, T, Start: TypeNum, End: TypeNum, I: SliceIndex<[T]>> Index<I> for RangedMut<'a, T, Start, End>[src]

type Output = I::Output

The returned type after indexing.

impl<'a, T, Start: TypeNum, End: TypeNum, I: SliceIndex<[T]>> IndexMut<I> for RangedMut<'a, T, Start, End>[src]

Auto Trait Implementations

impl<'a, T, Start, End> Send for RangedMut<'a, T, Start, End> where
    End: Send,
    Start: Send,
    T: Send

impl<'a, T, Start, End> Sync for RangedMut<'a, T, Start, End> where
    End: Sync,
    Start: Sync,
    T: Sync

Blanket Implementations

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]