clipboard-win 0.5.0

Utilities to interact with clipboard.
docs.rs failed to build clipboard-win-0.5.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: clipboard-win-5.3.1

Clipboard WIN API

This crate provide simple means to operate with Windows clipboard.

Example:

extern crate clipboard_win::*;

use clipboard_win;

fn main() {
    println!("I set some clipboard text like a boss!");
    set_clipboard("for my waifu!");
}