Enum libxdo::OpError [] [src]

pub enum OpError {
    Nul(NulError),
    Ffi(i32),
}

An error that can happen while executing an operation.

Variants

The provided string parameter had an interior null byte in it.

Libxdo failed, returning an error code.

Trait Implementations

impl Debug for OpError
[src]

Formats the value using the given formatter.

impl Display for OpError
[src]

Formats the value using the given formatter. Read more

impl Error for OpError
[src]

A short description of the error. Read more

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

impl From<NulError> for OpError
[src]

Performs the conversion.