pub trait DisplayOwnershipProxyInterface: Send + Sync {
    type GetEventResponseFut: Future<Output = Result<Event, Error>> + Send;

    // Required method
    fn get_event(&self) -> Self::GetEventResponseFut;
}

Required Associated Types§

source

type GetEventResponseFut: Future<Output = Result<Event, Error>> + Send

Required Methods§

Implementors§