[−][src]Struct vented::utils::sync::AsyncValue
Implementations
impl<V, E> AsyncValue<V, E> where
E: Display, [src]
E: Display,
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]
F: FnOnce(&E) + Send + Sync + 'static,
pub fn on_success<F>(&mut self, cb: F) -> &mut Self where
F: FnOnce(&V) + Send + Sync + 'static, [src]
F: FnOnce(&V) + Send + Sync + 'static,
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]
&mut self,
timeout: Duration
) -> Option<Result<V, E>>
Returns the value of the future only blocking for the given timeout
Trait Implementations
impl<T, E> Clone for AsyncValue<T, E>[src]
fn clone(&self) -> Self[src]
fn clone_from(&mut self, source: &Self)1.0.0[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,
E: Send,
V: Send,
impl<V, E> Sync for AsyncValue<V, E> where
E: Send,
V: Send,
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]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> Same<T> for T[src]
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,