pub trait ClipboardProvider {
    fn read(&self) -> Result<String, Box<dyn Error>>;
    fn write(&mut self, contents: String) -> Result<(), Box<dyn Error>>;
}

Required Methods

Implementations on Foreign Types

Implementors