pub trait Provider {
    fn set_contents(&self) -> Result<()>;
}
Expand description

The trait that a ready-to-use clipboard implements

Required methods

Attempt to set the contents into the system clipboard

Errors

Fails with [ClipboardError]

Implementors