pub trait Creator: Sync + Send {
    fn create<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        chord: &'life1 dyn Chord,
        arg: &'life2 dyn Arg
    ) -> Pin<Box<dyn Future<Output = Result<Box<dyn Action>, Error>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required Methods

Implementors