Enum jwilm_xdo::Error [] [src]

pub enum Error {
    Failed(&'static str),
    Utf8(Utf8Error),
    NullByteInString(NulError),
}

Variants

Some xdo call failed

Got a non-UTF-8 value

Passed a string parameter with a Null byte

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl Error for Error
[src]

[src]

The lower-level cause of this error, if any. Read more

[src]

A short description of the error. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<Utf8Error> for Error
[src]

[src]

Performs the conversion.

impl From<NulError> for Error
[src]

[src]

Performs the conversion.