Trait ExecutorHandle

Source
pub trait ExecutorHandle: 'static + Unpin {
    type Ref: Deref<Target = Executor>;

    // Required method
    fn get(&self) -> Self::Ref;
}

Required Associated Types§

Source

type Ref: Deref<Target = Executor>

Required Methods§

Source

fn get(&self) -> Self::Ref

Implementations on Foreign Types§

Source§

impl ExecutorHandle for Weak<Executor>

Source§

type Ref = Rc<Executor>

Source§

fn get(&self) -> Self::Ref

Implementors§