[][src]Enum procfs::ProcError

pub enum ProcError {
    PermissionDenied(Option<PathBuf>),
    NotFound(Option<PathBuf>),
    Incomplete(Option<PathBuf>),
    Io(ErrorOption<PathBuf>),
    Other(String),
}

Error type for most procfs functions.

Most of the variants have an Option<PathBuf> component. If the error root cause was related to some operation on a file, the path of this file will be stored in this component.

Variants

PermissionDenied(Option<PathBuf>)

A standard permission denied error.

This will be a common error, since some files in the procfs filesystem are only readable by the root user.

NotFound(Option<PathBuf>)

This might mean that the process no longer exists, or that your kernel doesn't support the feature you are trying to use.

Incomplete(Option<PathBuf>)

This might mean that a procfs file has incomplete contents.

Io(ErrorOption<PathBuf>)

Any other IO error (rare).

Other(String)

Any other non-IO error (very rare).

Trait Implementations

impl From<Error> for ProcError[src]

impl Display for ProcError[src]

impl Debug for ProcError[src]

impl Error for ProcError[src]

fn description(&self) -> &str
1.0.0
[src]

This method is soft-deprecated. Read more

fn cause(&self) -> Option<&dyn Error>
1.0.0
[src]

Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

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

fn source(&self) -> Option<&(dyn Error + 'static)>
1.30.0
[src]

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

fn type_id(&self) -> TypeId where
    Self: 'static, 
1.34.0
[src]

Gets the TypeId of self

Auto Trait Implementations

impl Send for ProcError

impl Sync for ProcError

Blanket Implementations

impl<T> ToString for T where
    T: Display + ?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.

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

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

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