pub trait WakeGroupProviderProxyInterface: Send + Sync {
type CreateWakeGroupResponseFut: Future<Output = Result<CreateWakeGroupResponse, Error>> + Send;
// Required method
fn create_wake_group(
&self,
options: &WakeGroupOptions,
wake_watcher: EventPair,
) -> Self::CreateWakeGroupResponseFut;
}Required Associated Types§
type CreateWakeGroupResponseFut: Future<Output = Result<CreateWakeGroupResponse, Error>> + Send
Required Methods§
fn create_wake_group( &self, options: &WakeGroupOptions, wake_watcher: EventPair, ) -> Self::CreateWakeGroupResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".