Struct futures_shuttle::ShuttleValue [] [src]

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

ShuttleValue is a guard for the object inside Shuttle, much like MutexGuard' forMutex`.

Trait Implementations

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

[src]

Formats the value using the given formatter. Read more

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

The resulting type after dereferencing.

[src]

Dereferences the value.

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

[src]

Mutably dereferences the value.

impl<'a, T, U> PartialEq<U> for ShuttleValue<'a, T> where
    T: PartialEq<U>, 
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

1.0.0
[src]

This method tests for !=.

Auto Trait Implementations

impl<'a, T> !Send for ShuttleValue<'a, T>

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