Struct granite::chain::StorageProxyMut[][src]

pub struct StorageProxyMut<'a, S: List>(_);

A reference to a buffer from a [Chain] which only allows iteration over mutable references to elements.

Trait Implementations

impl<'a, S: List> Debug for StorageProxyMut<'a, S> where
    &'a mut S: Debug
[src]

impl<'a: 'b, 'b, S: List> IntoMutIterator<'b> for StorageProxyMut<'a, S>[src]

type Item = S::Element

The item type over mutable references to which iteration will be performed.

type IterMut = <S as IntoMutIterator<'b>>::IterMut

The resulting iterator type.

Auto Trait Implementations

impl<'a, S> RefUnwindSafe for StorageProxyMut<'a, S> where
    S: RefUnwindSafe

impl<'a, S> Send for StorageProxyMut<'a, S> where
    S: Send

impl<'a, S> Sync for StorageProxyMut<'a, S> where
    S: Sync

impl<'a, S> Unpin for StorageProxyMut<'a, S>

impl<'a, S> !UnwindSafe for StorageProxyMut<'a, S>

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, 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.