pub trait PuppetFactoryProxyInterface: Send + Sync {
    type CreateResponseFut: Future<Output = Result<PuppetFactoryCreateResponse, Error>> + Send;

    // Required method
    fn create(&self, payload: PuppetCreationArgs) -> Self::CreateResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§