pub trait ClipboardWatcher: Send {
    // Required methods
    fn add_handler(&mut self, f: CallBack) -> &mut Self;
    fn start_watch(&mut self);
    fn get_shutdown_channel(&self) -> WatcherShutdown;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§