[][src]Trait drone_core::fib::ThrFiberFuture

pub trait ThrFiberFuture: ThrToken {
    fn add_future<F, Y, T>(self, fib: F) -> FiberFuture<T>
    where
        F: Fiber<Input = (), Yield = Y, Return = T>,
        Y: YieldNone,
        F: Send + 'static,
        T: Send + 'static
, { ... } }

Extends ThrToken types with add_future method.

Provided methods

Important traits for FiberFuture<T>
fn add_future<F, Y, T>(self, fib: F) -> FiberFuture<T> where
    F: Fiber<Input = (), Yield = Y, Return = T>,
    Y: YieldNone,
    F: Send + 'static,
    T: Send + 'static, 

Adds the fiber fib to the fiber chain and returns a future, which resolves on completion of the fiber.

Loading content...

Implementors

impl<T: ThrToken> ThrFiberFuture for T[src]

Loading content...