pub trait ClipboardHandler { // Required methods fn get_text(&mut self) -> Option<String>; fn set_text(&mut self, text: String); }