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