Clipboard utilities to read and write the system clipboard.
This crate wraps [copypasta] and exposes a small, ergonomic API to access
the clipboard from Freya applications and tests. See Clipboard in
clipboard.rs for usage examples.
This crate is reexported in freya::clipboard.
Examples
use Clipboard;
// Read the clipboard content
if let Ok = get
// Write to the clipboard
let _ = set;