pub trait RegistryProxyInterface: Send + Sync {
    type RegisterGlobalViewTreeWatcherResponseFut: Future<Output = Result<(), Error>> + Send;

    // Required method
    fn register_global_view_tree_watcher(
        &self,
        watcher: ServerEnd<ViewTreeWatcherMarker>,
    ) -> Self::RegisterGlobalViewTreeWatcherResponseFut;
}

Required Associated Types§

Required Methods§

Implementors§