[][src]Enum procfs::ProcError

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

The various error conditions in the procfs crate.

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.

If you encounter this error, consider retrying the operation.

Any other IO error (rare).

Other(String)

Any other non-IO error (very rare).

InternalError(InternalError)

This error indicates that some unexpected error occurred. This is a bug. The inner InternalError struct will contain some more info.

If you ever encounter this error, consider it a bug in the procfs crate and please report it on github.

Trait Implementations

impl Debug for ProcError[src]

impl Display for ProcError[src]

impl Error for ProcError[src]

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

impl From<Error> for ProcError[src]

impl From<Infallible> for ProcError[src]

impl From<ParseIntError> for ProcError[src]

Auto Trait Implementations

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