[][src]Struct tracing_fmt::filter::env::EnvFilter

pub struct EnvFilter { /* fields omitted */ }

Methods

impl EnvFilter[src]

pub fn from_default_env() -> Self[src]

Returns a new EnvFilter from the value of the RUST_LOG environment variable, ignoring any invalid filter directives.

pub fn from_env<A: AsRef<str>>(env: A) -> Self[src]

Returns a new EnvFilter from the value of the given environment variable, ignoring any invalid filter directives.

pub fn new<S: AsRef<str>>(dirs: S) -> Self[src]

Returns a new EnvFilter from the directives in the given string, ignoring any that are invalid.

pub fn try_new<S: AsRef<str>>(dirs: S) -> Result<Self, ParseError>[src]

Returns a new EnvFilter from the directives in the given string, or an error if any are invalid.

pub fn try_from_default_env() -> Result<Self, FromEnvError>[src]

Returns a new EnvFilter from the value of the RUST_LOG environment variable, or an error if the environment variable contains any invalid filter directives.

pub fn try_from_env<A: AsRef<str>>(env: A) -> Result<Self, FromEnvError>[src]

Returns a new EnvFilter from the value of the given environment variable, or an error if the environment variable is unset or contains any invalid filter directives.

Trait Implementations

impl<N> Filter<N> for EnvFilter[src]

impl Default for EnvFilter[src]

impl<S> From<S> for EnvFilter where
    S: AsRef<str>, 
[src]

impl Display for EnvFilter[src]

impl Debug for EnvFilter[src]

impl FromStr for EnvFilter[src]

type Err = ParseError

The associated error which can be returned from parsing.

Auto Trait Implementations

Blanket Implementations

impl<'a, F, N> Filter<N> for F where
    F: Fn(&Metadata, &Context<N>) -> bool,
    N: NewVisitor<'a>, 
[src]

fn callsite_enabled(&self, metadata: &Metadata, ctx: &Context<N>) -> Interest[src]

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

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

impl<T> ToString for T where
    T: Display + ?Sized
[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> Erased for T[src]