clipboard-master 4.0.0

Simple utility crate to monitor clipboard changes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(windows)]
mod win32;
#[cfg(windows)]
pub use win32::{Master, Shutdown};

#[cfg(all(unix, not(any(target_os="macos", target_os="ios", target_os="android", target_os="emscripten"))))]
mod x11;
#[cfg(all(unix, not(any(target_os="macos", target_os="ios", target_os="android", target_os="emscripten"))))]
pub use x11::{Master, Shutdown};

#[cfg(target_os="macos")]
mod mac;
#[cfg(target_os="macos")]
pub use mac::{Master, Shutdown};