[][src]Trait juggle::utils::DynamicWake

pub trait DynamicWake {
    fn wake(&self);
}

Implement this trait if you want to create custom waker with to_waker function.

Required methods

fn wake(&self)

Perform waking action.

Loading content...

Implementors

impl<F> DynamicWake for F where
    F: Fn() + Send + Sync + 'static, 
[src]

Loading content...