[][src]Struct vented::utils::sync::AsyncValue

pub struct AsyncValue<V, E> { /* fields omitted */ }

Implementations

impl<V, E> AsyncValue<V, E> where
    E: Display
[src]

pub fn new() -> Self[src]

Creates the future with no value

pub fn with_value(value: V) -> Self[src]

Creates a new AsyncValue with an already resolved value

pub fn with_error(error: E) -> Self[src]

pub fn on_error<F>(&mut self, cb: F) -> &mut Self where
    F: FnOnce(&E) + Send + Sync + 'static, 
[src]

pub fn on_success<F>(&mut self, cb: F) -> &mut Self where
    F: FnOnce(&V) + Send + Sync + 'static, 
[src]

pub fn resolve(&mut self, value: V)[src]

Sets the value of the future consuming the wait group

pub fn reject(&mut self, error: E)[src]

Sets an error for the value

pub fn result(&mut self, result: Result<V, E>)[src]

pub fn block_unwrap(&mut self) -> V[src]

pub fn get_value(&mut self) -> Result<V, E>[src]

Returns the value of the future after it has been set. This call blocks

pub fn get_value_with_timeout(
    &mut self,
    timeout: Duration
) -> Option<Result<V, E>>
[src]

Returns the value of the future only blocking for the given timeout

Trait Implementations

impl<T, E> Clone for AsyncValue<T, E>[src]

Auto Trait Implementations

impl<V, E> !RefUnwindSafe for AsyncValue<V, E>

impl<V, E> Send for AsyncValue<V, E> where
    E: Send,
    V: Send

impl<V, E> Sync for AsyncValue<V, E> where
    E: Send,
    V: Send

impl<V, E> Unpin for AsyncValue<V, E>

impl<V, E> !UnwindSafe for AsyncValue<V, E>

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> Same<T> for T[src]

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<V, T> VZip<V> for T where
    V: MultiLane<T>,