Enum detour::error::ErrorKind []

pub enum ErrorKind {
    Msg(String),
    RegionFailure(Error),
    AllocateFailure(MapError),
    AlreadyExisting,
    InvalidCode,
    NoPatchArea,
    NotExecutable,
    OutOfMemory,
    UnsupportedLoop,
    UnsupportedRelativeBranch,
}

The kind of an error.

Variants

A convenient variant for String.

A static detour has already been initialized

The address does not contain valid instructions.

The address has no available area for patching.

The address is not executable memory.

The system is out of executable memory.

The address contains an external loop.

The address contains an unsupported relative branch.

Methods

impl ErrorKind

A string describing the error kind.

Trait Implementations

impl Debug for ErrorKind

Formats the value using the given formatter.

impl Display for ErrorKind

Formats the value using the given formatter. Read more

impl<'a> From<&'a str> for ErrorKind

Performs the conversion.

impl From<String> for ErrorKind

Performs the conversion.

impl From<Error> for ErrorKind

Performs the conversion.