[][src]Struct spirit_log::CfgAndOpts

pub struct CfgAndOpts {
    pub cfg: Cfg,
    pub opts: Opts,
}

A combination of Cfg and Opts.

This is a composed Fragment ‒ the purpose is the caller can combine configuration both from command line options and configuration inside the same Pipeline ‒ see the crate examples.

The Fragment will then combine the options to create the relevant loggers.

Interaction on stderr

There's a little twist around stderr and the interaction between the -L option and loggers set up in configuration. This is to act in a way that makes some sense ‒ in particular, we don't want to log to stderr twice. Therefore:

  • If the user specifies -l (or -L) on the command line, any stderr logger from configuration is skipped (the -l takes precedence).
  • If there are no loggers in configuration but there's no -l, errors are logged to stderr. This is the case before configuration is loaded or if it contains no loggers. We want to report errors somewhere.

Fields

cfg: Cfg

The configuration options.

opts: Opts

The command line options.

Trait Implementations

impl Clone for CfgAndOpts[src]

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

Performs copy-assignment from source. Read more

impl Debug for CfgAndOpts[src]

impl Fragment for CfgAndOpts[src]

type Driver = TrivialDriver

The default driver to be used by the fragment. Read more

type Seed = ()

The intermediate product if the fragment supports two-stage creation of [Resource][Fragment::Resource]s. If not, it can be set to (). Read more

type Resource = Dispatch

The actual product this [Fragment] creates.

type Installer = LogInstaller

The default installer to be used unless a transformation or the user doesn't provide one. Read more

fn create(&self, name: &'static str) -> Result<Self::Resource, Error>[src]

Runs both stages of creation at once. Read more

fn init<B>(builder: B, &'static str) -> Result<B, Error> where
    B: Extensible<Ok = B>,
    <B as Extensible>::Config: DeserializeOwned,
    <B as Extensible>::Config: Send,
    <B as Extensible>::Config: Sync,
    <B as Extensible>::Config: 'static,
    <B as Extensible>::Opts: StructOpt,
    <B as Extensible>::Opts: Send,
    <B as Extensible>::Opts: Sync,
    <B as Extensible>::Opts: 'static, 
[src]

An initialization routine. Read more

Auto Trait Implementations

impl Send for CfgAndOpts

impl Sync for CfgAndOpts

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> IntoResult for T[src]

impl<T> Erased for T