Enum unix_daemonize::Error [] [src]

pub enum Error {
    FirstFork(Option<i32>),
    SecondFork(Option<i32>),
    Setsid(Option<i32>),
    Chdir(Error),
    FilenameToStr(PathBuf),
    FilenameFFI(PathBufNulError),
    OpenStd(PathBufOption<i32>),
    Dup2(Option<i32>),
}

The error type for daemonizing related operations.

Most variants holds Option<i32> value, where i32 stands for errno result for corresponding OS functions.

Variants

Trait Implementations

impl Debug for Error
[src]

Formats the value using the given formatter.