Enum nix::Error [] [src]

pub enum Error {
    Sys(Errno),
    InvalidPath,
}
[]

Nix Error Type

The nix error type provides a common way of dealing with various system system/libc calls that might fail. Each error has a corresponding errno (usually the one from the underlying OS) to which it can be mapped in addition to implementing other common traits.

Variants

Methods

impl Error
[src]

[]

Create a nix Error from a given errno

[]

Get the current errno and convert it to a nix Error

[]

Create a new invalid argument error (EINVAL)

[]

Get the errno associated with this error

Trait Implementations

impl Clone for Error
[src]

[]

Returns a copy of the value. Read more

[]

Performs copy-assignment from source. Read more

impl Copy for Error
[src]

impl Debug for Error
[src]

[]

Formats the value using the given formatter.

impl PartialEq for Error
[src]

[]

This method tests for self and other values to be equal, and is used by ==. Read more

[]

This method tests for !=.

impl From<Errno> for Error
[src]

[]

Performs the conversion.

impl Error for Error
[src]

[]

A short description of the error. Read more

[]

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

impl Display for Error
[src]

[]

Formats the value using the given formatter. Read more