Skip to main content

ControlCreatorProxyInterface

Trait ControlCreatorProxyInterface 

Source
pub trait ControlCreatorProxyInterface: Send + Sync {
    type CreateResponseFut: Future<Output = Result<ControlCreatorCreateResult, Error>> + Send;

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

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§