Struct rinecs::storage::SliceViewMut[][src]

pub struct SliceViewMut<'a, T> { /* fields omitted */ }

Trait Implementations

impl<'a, T> Borrow<[T]> for SliceViewMut<'a, T>[src]

impl<'a, T> BorrowMut<[T]> for SliceViewMut<'a, T>[src]

impl<'a, T> Changes for SliceViewMut<'a, T> where
    &'b T: HasChanged,
    &'b mut T: Changes
[src]

impl<'a, T: Debug> Debug for SliceViewMut<'a, T>[src]

impl<'a, T> Deref for SliceViewMut<'a, T>[src]

type Target = [T]

The resulting type after dereferencing.

impl<'a, T> DerefMut for SliceViewMut<'a, T>[src]

impl<'a, T> HasChanged for SliceViewMut<'a, T> where
    &'b T: HasChanged
[src]

impl<'a, T> IntoIterator for SliceViewMut<'a, T>[src]

type Item = &'a mut T

The type of the elements being iterated over.

type IntoIter = IterMut<'a, T>

Which kind of iterator are we turning this into?

Auto Trait Implementations

impl<'a, T> RefUnwindSafe for SliceViewMut<'a, T> where
    T: RefUnwindSafe

impl<'a, T> Send for SliceViewMut<'a, T> where
    T: Send

impl<'a, T> Sync for SliceViewMut<'a, T> where
    T: Sync

impl<'a, T> Unpin for SliceViewMut<'a, T>

impl<'a, T> !UnwindSafe for SliceViewMut<'a, T>

Blanket Implementations

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

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

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

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

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

impl<T> Pointable for T[src]

type Init = T

The type for initializers.

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.