[][src]Struct sloggers::types::KVFilterParameters

pub struct KVFilterParameters {
    pub severity: Severity,
    pub only_pass_any_on_all_keys: Option<KVFilterList>,
    pub always_suppress_any: Option<KVFilterList>,
    pub only_pass_on_regex: Option<Regex>,
    pub always_suppress_on_regex: Option<Regex>,
}

Type summarizing KVFilter parameters.

See the documentation of KVFilter for more details.

Examples

use sloggers::types::{KVFilterParameters, Severity};

let params = KVFilterParameters::default();
assert_eq!(params.severity, Severity::Info);
assert!(params.only_pass_any_on_all_keys.is_none());
assert!(params.always_suppress_any.is_none());
assert!(params.only_pass_on_regex.is_none());
assert!(params.always_suppress_on_regex.is_none());

Fields

severity: Severityonly_pass_any_on_all_keys: Option<KVFilterList>always_suppress_any: Option<KVFilterList>only_pass_on_regex: Option<Regex>always_suppress_on_regex: Option<Regex>

Trait Implementations

impl Default for KVFilterParameters[src]

impl Clone for KVFilterParameters[src]

impl Debug for KVFilterParameters[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[src]