Enum unshare::Error [] [src]

pub enum Error {
    InvalidPath,
    CreatePipe(i32),
    Fork(i32),
}

Variants

InvalidPath

Invalid path somewhere when running command. Presumably has embedded nulls.

Frankly, this error should not happen when running process. We just keep it here in case nix returns this error, which should not happen.

CreatePipe(i32)

Error happened when we were trying to create pipe. The pipes used for two purposes: (a) for the process's stdio, (b) internally to wake up child process and return error back to the parent.

Fork(i32)

Error when forking process

Methods

impl Error
[src]

fn raw_os_error(&self) -> Option<i32>

Similarly to io::Error returns bare error code

Trait Implementations

impl Clone for Error
[src]

fn clone(&self) -> Error

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)
1.0.0

Performs copy-assignment from source. Read more

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl StdError for Error
[src]

fn description(&self) -> &'static str

A short description of the error. Read more

fn cause(&self) -> Option<&Error>
1.0.0

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

impl Display for Error
[src]

fn fmt(&self, fmt: &mut Formatter) -> Result

Formats the value using the given formatter.