Struct dvm_cli::config::LoggingOptions[][src]

pub struct LoggingOptions {
    pub verbose: u8,
    pub log_filters: String,
    pub log_style: String,
}

Fields

verbose: u8

Enables verbosity logging mode. Sets level of verbosity, and can be used multiple times. Overrides or extends values passed as the --log parameter or DVM_LOG environment variable. To set maximum level of verbosity use -vvvv.

log_filters: String

Log filters. The same as standard RUST_LOG environment variable. Possible values in verbosity ordering: error, warn, info, debug and trace. For complex filters see documentation: https://docs.rs/env_logger/#filtering-results

log_style: String

Log colors and other styles. The same as standard RUST_LOG_STYLE environment variable. Possible values in verbosity ordering: auto, always, never.

Trait Implementations

impl Clap for LoggingOptions[src]

impl Clone for LoggingOptions[src]

impl Debug for LoggingOptions[src]

impl Default for LoggingOptions[src]

impl FromArgMatches for LoggingOptions[src]

impl IntoApp for LoggingOptions[src]

Auto Trait Implementations

impl RefUnwindSafe for LoggingOptions

impl Send for LoggingOptions

impl Sync for LoggingOptions

impl Unpin for LoggingOptions

impl UnwindSafe for LoggingOptions

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> IntoRequest<T> for T[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]