[][src]Enum lpfs::ProcErr

pub enum ProcErr {
    IO(Error),
    Parse(Box<dyn Error>),
    BadFormat(String),
}

all the funcitons return this error in the crate.

Variants

IO(Error)

Failed to read the corresponding file.

Parse(Box<dyn Error>)
BadFormat(String)

Trait Implementations

impl Debug for ProcErr[src]

impl<'_> From<&'_ str> for ProcErr[src]

impl From<Error> for ProcErr[src]

impl From<ParseFloatError> for ProcErr[src]

impl From<ParseIntError> for ProcErr[src]

impl From<String> for ProcErr[src]

Auto Trait Implementations

impl !RefUnwindSafe for ProcErr

impl !Send for ProcErr

impl !Sync for ProcErr

impl Unpin for ProcErr

impl !UnwindSafe for ProcErr

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, 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.