Enum process_memory_reader::MemoryReadError[][src]

pub enum MemoryReadError {
    InaccessibleMemoryAddress {
        address: usize,
    },
    LessBytesRead {
        expected: usize,
        actual: usize,
    },
    IOError {
        io_error: IoError,
    },
}
Expand description

Errors that can be caught when trying to read process memory.

Variants

InaccessibleMemoryAddress
Show fields

Fields of InaccessibleMemoryAddress

address: usize
LessBytesRead
Show fields

Fields of LessBytesRead

expected: usizeactual: usize
IOError
Show fields

Fields of IOError

io_error: IoError

Trait Implementations

Formats the value using the given formatter. Read more

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.