pub trait ClipboardBackend { // Required methods fn get_text(&mut self) -> String; fn set_text(&mut self, text: &str); }
A clipboard backend.
Get the clipboard text.
Set the clipboard text.