Skip to main content

WakeGroupProviderProxyInterface

Trait WakeGroupProviderProxyInterface 

Source
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§

Required Methods§

Source

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".

Implementors§