Skip to main content

DriverFuture

Type Alias DriverFuture 

Source
pub type DriverFuture = BoxFuture<'static, ()>;
Expand description

The boxed pipeline driver future returned by Pipeline::start.

Send on native targets, so the driver can be handed to a multi-threaded executor (tokio::spawn); !Send on wasm32, where it is spawn_local-ed.

Aliased Typeยง

pub struct DriverFuture { /* private fields */ }