[][src]Enum memflow::error::Error

pub enum Error {
    Other(&'static str),
    Partial,
    Bounds,
    IO(&'static str),
    InvalidArchitecture,
    Connector(&'static str),
    PhysicalMemory(&'static str),
    VirtualTranslate,
    VirtualMemory(&'static str),
    Encoding,
}

Specialized Error type for memflow errors.

Variants

Other(&'static str)

Generic error type containing a string

Partial

Partial error.

Catch-all for partial errors which have been converted into full errors.

Bounds

Out of bounds.

Catch-all for bounds check errors.

IO(&'static str)

IO error

Catch-all for io related errors.

InvalidArchitecture

Invalid Architecture error.

The architecture provided is not a valid argument for the given function.

Connector(&'static str)

Connector error

Catch-all for connector related errors

PhysicalMemory(&'static str)

Physical Read Error

A read/write from/to the physical memory has failed.

VirtualTranslate

VirtualTranslate Error

Error when trying to translate virtual to physical memory addresses.

VirtualMemory(&'static str)

Virtual Memory Error

A read/write from/to the virtual memory has failed.

Encoding

Encoding error.

Catch-all for string related errors such as lacking a nul terminator.

Implementations

impl Error[src]

pub fn to_str_pair(self) -> (&'static str, Option<&'static str>)[src]

Returns a tuple representing the error description and its string value.

pub fn to_str(self) -> &'static str[src]

Returns a simple string representation of the error.

Trait Implementations

impl Clone for Error[src]

impl Copy for Error[src]

impl Debug for Error[src]

impl Display for Error[src]

impl Eq for Error[src]

impl Error for Error[src]

impl From<&'static str> for Error[src]

Convert from &str to error

impl<T> From<Error> for PartialError<T>[src]

Convert from Error

impl<T> From<PartialError<T>> for Error[src]

Convert from PartialError

impl From<Utf8Error> for Error[src]

Convert from str::Utf8Error

impl Hash for Error[src]

impl PartialEq<Error> for Error[src]

impl StructuralEq for Error[src]

impl StructuralPartialEq for Error[src]

Auto Trait Implementations

impl RefUnwindSafe for Error

impl Send for Error

impl Sync for Error

impl Unpin for Error

impl UnwindSafe for Error

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.