pub trait Start {
    fn start<P>(&self, poll_fn: P)
    where
        P: FnMut() + 'static
; }

Required Methods

Implementors