pub trait ClipboardObject {
    // Required methods
    fn get(&self) -> Option<String>;
    fn set(&mut self, data: &str);
}

Required Methods§

source

fn get(&self) -> Option<String>

source

fn set(&mut self, data: &str)

Implementors§