xclipboard 0.16.3

Cross-platform clipboard with extra features.
Documentation
1
2
3
4
5
6
7
8
9
10
use thiserror::Error;

/// Error type for the clipboard library.
#[derive(Debug, Error)]
pub enum Error {
    /// Error generated by the desktop clipboard library.
    #[cfg(all(not(target_os = "android"), not(target_os = "ios")))]
    #[error(transparent)]
    ArBoard(#[from] arboard::Error),
}