Completable

Type Alias Completable 

Source
pub type Completable<T> = Result<T, Incomplete>;
Expand description

A Completable result is a value eventually computed by an algorithm where the computation can be Incomplete when the value is polled.

Aliased Type§

pub enum Completable<T> {
    Ok(T),
    Err(Incomplete),
}

Variants§

§1.0.0

Ok(T)

Contains the success value

§1.0.0

Err(Incomplete)

Contains the error value