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
Msg(String)
A convenient variant for String.
RegionFailure(Error)
AllocateFailure(MapError)
AlreadyExisting
A static detour has already been initialized
InvalidCode
The address does not contain valid instructions.
NoPatchArea
The address has no available area for patching.
NotExecutable
The address is not executable memory.
OutOfMemory
The system is out of executable memory.
UnsupportedLoop
The address contains an external loop.
UnsupportedRelativeBranch
The address contains an unsupported relative branch.
Methods
impl ErrorKind
fn description(&self) -> &str
A string describing the error kind.