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