Struct shred::FetchMut [] [src]

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

Allows to fetch a resource in a system mutably.

If the resource isn't strictly required, you should use Option<FetchMut<T>>.

Type parameters

  • T: The type of the resource

Trait Implementations

impl<'a, T, F> From<FetchMut<'a, T>> for Write<'a, T, F>
[src]

[src]

Performs the conversion.

impl<'a, T> Deref for FetchMut<'a, T> where
    T: Resource
[src]

The resulting type after dereferencing.

[src]

Dereferences the value.

impl<'a, T> DerefMut for FetchMut<'a, T> where
    T: Resource
[src]

[src]

Mutably dereferences the value.

Auto Trait Implementations

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

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