Struct libutils::CmdlineOpts [] [src]

pub struct CmdlineOpts {
    pub stderr_level: Level,
    pub syslog_level: Level,
    pub guts: Option<PathBuf>,
    pub downstream: PathBuf,
}

The parsed command line options.

This holds information that is provided on the command line.

Note that we may decide to move some of these options into a configuration file.

Fields

Desired log level on stderr.

Desired log level for syslog.

The pakon's report socket path.

The pakon's listening socket.

Trait Implementations

impl Debug for CmdlineOpts
[src]

Formats the value using the given formatter.

impl PartialEq for CmdlineOpts
[src]

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

This method tests for !=.

impl From<PreCmdlineOpts> for CmdlineOpts
[src]

Performs the conversion.