Enum tangle::Async
[−]
[src]
pub enum Async<T, E> { Ok(T), Err(E), Continue(Future<T, E>), }
Asynchronous version of Result<T, E>
that allows for future composition. Additional
macros are provided to work with both Async<T, E>
and Result<T, E>
.
Variants
Ok | ||
Err | ||
Continue |