pub trait DisplayOwnershipProxyInterface: Send + Sync {
type GetEventResponseFut: Future<Output = Result<Event, Error>> + Send;
// Required method
fn get_event(&self) -> Self::GetEventResponseFut;
}
pub trait DisplayOwnershipProxyInterface: Send + Sync {
type GetEventResponseFut: Future<Output = Result<Event, Error>> + Send;
// Required method
fn get_event(&self) -> Self::GetEventResponseFut;
}