Trait ClipboardObject

Source
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§