pub trait StateProxyInterface: Send + Sync {
    // Required method
    fn get_watcher(
        &self,
        options: &WatcherOptions,
        request: ServerEnd<WatcherMarker>
    ) -> Result<(), Error>;
}

Required Methods§

source

fn get_watcher( &self, options: &WatcherOptions, request: ServerEnd<WatcherMarker> ) -> Result<(), Error>

Implementors§