Enum clipboard2::ClipboardError[][src]

pub enum ClipboardError {
    Unimplemented,
    IoError(IoError),
    EncodingError(FromUtf8Error),
    WindowsClipboardError(WinError),
}

Variants

Trait Implementations

impl Debug for ClipboardError
[src]

Formats the value using the given formatter. Read more

impl From<IoError> for ClipboardError
[src]

Performs the conversion.

impl Display for ClipboardError
[src]

Formats the value using the given formatter. Read more

impl From<FromUtf8Error> for ClipboardError
[src]

Performs the conversion.

Auto Trait Implementations