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§

Implementors§