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),
}