Skip to main content

EventProxyInterface

Trait EventProxyInterface 

Source
pub trait EventProxyInterface: Send + Sync {
    type CreateEventResponseFut: Future<Output = Result<EventCreateEventResult, Error>> + Send;

    // Required method
    fn create_event(&self, handle: &NewHandleId) -> Self::CreateEventResponseFut;
}

Required Associated Types§

Required Methods§

Dyn Compatibility§

This trait is dyn compatible.

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

Implementors§