Trait backstage::actor::Starter[][src]

pub trait Starter<H> {
    type Ok;
    type Error: Display;
    type Input;
    #[must_use]
    fn starter<'async_trait>(
        self,
        handle: H,
        input: Option<Self::Input>
    ) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>>
    where
        Self: 'async_trait
; }

Associated Types

Loading content...

Required methods

#[must_use]
fn starter<'async_trait>(
    self,
    handle: H,
    input: Option<Self::Input>
) -> Pin<Box<dyn Future<Output = Result<Self::Ok, Self::Error>> + Send + 'async_trait>> where
    Self: 'async_trait, 
[src]

Loading content...

Implementors

Loading content...