pub trait SessionObserverProxyInterface: Send + Sync {
type WatchStatusResponseFut: Future<Output = Result<SessionInfoDelta, Error>> + Send;
// Required method
fn watch_status(&self) -> Self::WatchStatusResponseFut;
}
pub trait SessionObserverProxyInterface: Send + Sync {
type WatchStatusResponseFut: Future<Output = Result<SessionInfoDelta, Error>> + Send;
// Required method
fn watch_status(&self) -> Self::WatchStatusResponseFut;
}