Type Alias tvix_eval::vm::generators::Generator

source ·
pub(crate) type Generator = Gen<VMRequest, VMResponse, Pin<Box<dyn Future<Output = Result<Value, ErrorKind>>>>>;

Aliased Type§

struct Generator {
    airlock: Airlock<VMRequest, VMResponse>,
    future: Pin<Box<Pin<Box<dyn Future<Output = Result<Value, ErrorKind>>>>>>,
}

Fields§

§airlock: Airlock<VMRequest, VMResponse>§future: Pin<Box<Pin<Box<dyn Future<Output = Result<Value, ErrorKind>>>>>>