[][src]Enum memflow::error::PartialError

pub enum PartialError<T> {
    Error(Error),
    PartialVirtualRead(T),
    PartialVirtualWrite,
}

Specialized PartialError type for recoverable memflow errors.

Variants

Error(Error)

Hard Error

Catch-all for all hard errors

PartialVirtualRead(T)

Partial Virtual Read Error

Error when a read from virtual memory only completed partially. This can usually happen when trying to read a page that is currently paged out.

PartialVirtualWrite

Partial Virtual Write Error

Error when a write from virtual memory only completed partially. This can usually happen when trying to read a page that is currently paged out.

Implementations

impl<T> PartialError<T>[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<T: Clone> Clone for PartialError<T>[src]

impl<T: Copy> Copy for PartialError<T>[src]

impl<T> Debug for PartialError<T>[src]

Custom fmt::Debug impl for the specialized memflow Error type. This is required due to our generic type T.

impl<T> Display for PartialError<T>[src]

impl<T: Eq> Eq for PartialError<T>[src]

impl<T: Debug> Error for PartialError<T>[src]

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

Convert from Error

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

Convert from PartialError

impl<T: Hash> Hash for PartialError<T>[src]

impl<T: PartialEq> PartialEq<PartialError<T>> for PartialError<T>[src]

impl<T> StructuralEq for PartialError<T>[src]

impl<T> StructuralPartialEq for PartialError<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for PartialError<T> where
    T: RefUnwindSafe

impl<T> Send for PartialError<T> where
    T: Send

impl<T> Sync for PartialError<T> where
    T: Sync

impl<T> Unpin for PartialError<T> where
    T: Unpin

impl<T> UnwindSafe for PartialError<T> where
    T: UnwindSafe

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.