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§
type CreateResponseFut: Future<Output = Result<PuppetFactoryCreateResponse, Error>> + Send
Required Methods§
fn create(&self, payload: PuppetCreationArgs) -> Self::CreateResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".