Enum libxdo::CreationError [] [src]

pub enum CreationError {
    Nul(NulError),
    Ffi,
}

An error that can happen when trying to create an XDo instance.

Variants

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

Libxdo failed to create an instance. No further information available.

Trait Implementations

impl Debug for CreationError
[src]

Formats the value using the given formatter.

impl Display for CreationError
[src]

Formats the value using the given formatter. Read more

impl Error for CreationError
[src]

A short description of the error. Read more

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

impl From<NulError> for CreationError
[src]

Performs the conversion.