pub trait SessionObserverProxyInterface: Send + Sync {
type WatchStatusResponseFut: Future<Output = Result<SessionInfoDelta, Error>> + Send;
// Required method
fn watch_status(&self) -> Self::WatchStatusResponseFut;
}Required Associated Types§
type WatchStatusResponseFut: Future<Output = Result<SessionInfoDelta, Error>> + Send
Required Methods§
fn watch_status(&self) -> Self::WatchStatusResponseFut
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".