Hard fork of https://github.com/aweinstock314/rust-clipboard
This library has better error handling than the original one, the code is mostly copied.
```rust extern crate clipboard2;
use clipboard2::{Clipboard, SystemClipboard};
fn main() { let clipboard = SystemClipboard::new().unwrap(); clipboard.setstringcontents(String::from("Hello")).unwrap(); println!("{}", clipboard.getstringcontents().unwrap()); } ```