pub struct Builder { /* private fields */ }
Implementations§
source§impl Builder
impl Builder
sourcepub fn with_regex(self, regex: bool) -> Builder
pub fn with_regex(self, regex: bool) -> Builder
Sets whether span field values can be matched with regular expressions.
If this is true
, field filter directives will be interpreted as
regular expressions if they are not able to be interpreted as a bool
,
i64
, u64
, or f64
literal. If this is false,
those field values
will be interpreted as literal std::fmt::Debug
output instead.
By default, regular expressions are enabled.
Note: when EnvFilter
s are constructed from untrusted inputs,
disabling regular expressions is strongly encouraged.
sourcepub fn with_default_directive(self, default_directive: Directive) -> Builder
pub fn with_default_directive(self, default_directive: Directive) -> Builder
Sets a default [filtering directive] that will be added to the filter if the parsed string or environment variable contains no filter directives.
By default, there is no default directive.
Examples
If parse
, parse_lossy
, from_env
, or from_env_lossy
are
called with an empty string or environment variable, the default
directive is used instead:
use tracing_subscriber::filter::{EnvFilter, LevelFilter};
let filter = EnvFilter::builder()
.with_default_directive(LevelFilter::INFO.into())
.parse("")?;
assert_eq!(format!("{}", filter), "info");
Note that the lossy
variants (parse_lossy
and from_env_lossy
)
will ignore any invalid directives. If all directives in a filter
string or environment variable are invalid, those methods will also use
the default directive:
use tracing_subscriber::filter::{EnvFilter, LevelFilter};
let filter = EnvFilter::builder()
.with_default_directive(LevelFilter::INFO.into())
.parse_lossy("some_target=fake level,foo::bar=lolwut");
assert_eq!(format!("{}", filter), "info");
If the string or environment variable contains valid filtering directives, the default directive is not used:
use tracing_subscriber::filter::{EnvFilter, LevelFilter};
let filter = EnvFilter::builder()
.with_default_directive(LevelFilter::INFO.into())
.parse_lossy("foo=trace");
// The default directive is *not* used:
assert_eq!(format!("{}", filter), "foo=trace");
Parsing a more complex default directive from a string:
use tracing_subscriber::filter::{EnvFilter, LevelFilter};
let default = "myapp=debug".parse()
.expect("hard-coded default directive should be valid");
let filter = EnvFilter::builder()
.with_default_directive(default)
.parse("")?;
assert_eq!(format!("{}", filter), "myapp=debug");
sourcepub fn with_env_var(self, var: impl ToString) -> Builder
pub fn with_env_var(self, var: impl ToString) -> Builder
Sets the name of the environment variable used by the from_env
,
from_env_lossy
, and try_from_env
methods.
By default, this is the value of EnvFilter::DEFAULT_ENV
(RUST_LOG
).
sourcepub fn parse_lossy<S>(&self, dirs: S) -> EnvFilter
pub fn parse_lossy<S>(&self, dirs: S) -> EnvFilter
Returns a new EnvFilter
from the directives in the given string,
ignoring any that are invalid.
sourcepub fn parse<S>(&self, dirs: S) -> Result<EnvFilter, ParseError>
pub fn parse<S>(&self, dirs: S) -> Result<EnvFilter, ParseError>
Returns a new EnvFilter
from the directives in the given string,
or an error if any are invalid.
sourcepub fn from_env_lossy(&self) -> EnvFilter
pub fn from_env_lossy(&self) -> EnvFilter
Returns a new EnvFilter
from the directives in the configured
environment variable, ignoring any directives that are invalid.
sourcepub fn from_env(&self) -> Result<EnvFilter, FromEnvError>
pub fn from_env(&self) -> Result<EnvFilter, FromEnvError>
Returns a new EnvFilter
from the directives in the configured
environment variable. If the environment variable is unset, no directive is added.
An error is returned if the environment contains invalid directives.
sourcepub fn try_from_env(&self) -> Result<EnvFilter, FromEnvError>
pub fn try_from_env(&self) -> Result<EnvFilter, FromEnvError>
Returns a new EnvFilter
from the directives in the configured
environment variable, or an error if the environment variable is not set
or contains invalid directives.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Builder
impl Send for Builder
impl Sync for Builder
impl Unpin for Builder
impl UnwindSafe for Builder
Blanket Implementations§
source§impl<T, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<Image>) -> U
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
source§impl<T> FromWorld for Twhere
T: Default,
impl<T> FromWorld for Twhere
T: Default,
source§fn from_world(_world: &mut World) -> T
fn from_world(_world: &mut World) -> T
Self
using data from the given World
.