[][src]Trait nursery::Waitable

pub trait Waitable {
    fn wait(&mut self);
}

The trait that handles to a concurrent operation must implement.

Required methods

fn wait(&mut self)

Waits for the Waitable operation to finish. It is expected that implementors will make this an idempotent operation.

Loading content...

Implementors

impl Waitable for Nursery[src]

impl<'a> Waitable for Handle<'a>[src]

Loading content...