Type Alias gluon_vm::thread::FutureValue

source ·
pub type FutureValue<F> = Either<Ready<<F as Future>::Output>, F>;

Aliased Type§

enum FutureValue<F> {
    Left(Ready<<F as Future>::Output>),
    Right(F),
}

Variants§

§

Left(Ready<<F as Future>::Output>)

First branch of the type

§

Right(F)

Second branch of the type