Enum memreader::error::MemReaderError [] [src]

pub enum MemReaderError {
    FewerBytesRead(usizeVec<u8>),
    UnsuccessfulRead(Option<isize>),
    Handle(Option<isize>),
    Io(IoError),
    Other(isize),
}

An error when using MemReader.

Variants

Fewer bytes were read from memory than were requested.

Contains the number of bytes read and the shortened vector.

The attempt to read the memory was unsuccessful.

If there was any error status from the system call, it is included.

Unable to get a handle on the process to read.

If there was any error status from the system call, it is included.

An IO error occurred and is included.

Another error, represented by a code.

Trait Implementations

impl Debug for MemReaderError
[src]

Formats the value using the given formatter.

impl Display for MemReaderError
[src]

Formats the value using the given formatter. Read more

impl Error for MemReaderError
[src]

A short description of the error. Read more

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