clipboard-win 1.5.1

Utilities to interact with windows clipboard.
docs.rs failed to build clipboard-win-1.5.1
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.0

Clipboard WinAPI

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!");
}