pub trait SelectionProvider: Send + Sync {
// Required methods
fn current_selection(&self) -> Option<ClipboardProviding>;
fn get_selection_value(&self) -> Option<Zeroizing<String>>;
fn next_selection(&mut self);
}
pub trait SelectionProvider: Send + Sync {
// Required methods
fn current_selection(&self) -> Option<ClipboardProviding>;
fn get_selection_value(&self) -> Option<Zeroizing<String>>;
fn next_selection(&mut self);
}