Struct bevy::log::tracing_subscriber::fmt::writer::WithMinLevel
source · pub struct WithMinLevel<M> { /* private fields */ }
Expand description
A MakeWriter
combinator that only returns an enabled writer for spans
and events with metadata at or above a specified verbosity Level
.
This is returned by the MakeWriterExt::with_min_level
method. See the
method documentation for details.
Implementations§
source§impl<M> WithMinLevel<M>
impl<M> WithMinLevel<M>
sourcepub fn new(make: M, level: Level) -> WithMinLevel<M>
pub fn new(make: M, level: Level) -> WithMinLevel<M>
Wraps the provided MakeWriter
with a minimum Level
, so that it
returns OptionalWriter::none
for spans and events whose level is
less verbose than the maximum level.
See MakeWriterExt::with_min_level
for details.
Trait Implementations§
source§impl<M> Clone for WithMinLevel<M>where
M: Clone,
impl<M> Clone for WithMinLevel<M>where
M: Clone,
source§fn clone(&self) -> WithMinLevel<M>
fn clone(&self) -> WithMinLevel<M>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<M> Debug for WithMinLevel<M>where
M: Debug,
impl<M> Debug for WithMinLevel<M>where
M: Debug,
source§impl<'a, M> MakeWriter<'a> for WithMinLevel<M>where
M: MakeWriter<'a>,
impl<'a, M> MakeWriter<'a> for WithMinLevel<M>where
M: MakeWriter<'a>,
§type Writer = EitherWriter<<M as MakeWriter<'a>>::Writer, Sink>
type Writer = EitherWriter<<M as MakeWriter<'a>>::Writer, Sink>
The concrete
io::Write
implementation returned by make_writer
.source§fn make_writer(&'a self) -> <WithMinLevel<M> as MakeWriter<'a>>::Writer
fn make_writer(&'a self) -> <WithMinLevel<M> as MakeWriter<'a>>::Writer
source§fn make_writer_for(
&'a self,
meta: &Metadata<'_>
) -> <WithMinLevel<M> as MakeWriter<'a>>::Writer
fn make_writer_for( &'a self, meta: &Metadata<'_> ) -> <WithMinLevel<M> as MakeWriter<'a>>::Writer
source§impl<M> PartialEq for WithMinLevel<M>where
M: PartialEq,
impl<M> PartialEq for WithMinLevel<M>where
M: PartialEq,
source§fn eq(&self, other: &WithMinLevel<M>) -> bool
fn eq(&self, other: &WithMinLevel<M>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl<M> Copy for WithMinLevel<M>where
M: Copy,
impl<M> Eq for WithMinLevel<M>where
M: Eq,
impl<M> StructuralEq for WithMinLevel<M>
impl<M> StructuralPartialEq for WithMinLevel<M>
Auto Trait Implementations§
impl<M> RefUnwindSafe for WithMinLevel<M>where
M: RefUnwindSafe,
impl<M> Send for WithMinLevel<M>where
M: Send,
impl<M> Sync for WithMinLevel<M>where
M: Sync,
impl<M> Unpin for WithMinLevel<M>where
M: Unpin,
impl<M> UnwindSafe for WithMinLevel<M>where
M: UnwindSafe,
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
Return the
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
Mutably borrows from an owned value. Read more
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>
Convert
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>
Convert
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)
Convert
&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)
Convert
&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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<S> FromSample<S> for S
impl<S> FromSample<S> for S
fn from_sample_(s: S) -> S
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
source§impl<'a, M> MakeWriterExt<'a> for Mwhere
M: MakeWriter<'a>,
impl<'a, M> MakeWriterExt<'a> for Mwhere
M: MakeWriter<'a>,
source§fn with_max_level(self, level: Level) -> WithMaxLevel<Self>where
Self: Sized,
fn with_max_level(self, level: Level) -> WithMaxLevel<Self>where
Self: Sized,
Wraps
self
and returns a MakeWriter
that will only write output
for events at or below the provided verbosity Level
. For instance,
Level::TRACE
is considered to be _more verbosethan
Level::INFO`. Read moresource§fn with_min_level(self, level: Level) -> WithMinLevel<Self>where
Self: Sized,
fn with_min_level(self, level: Level) -> WithMinLevel<Self>where
Self: Sized,
Wraps
self
and returns a MakeWriter
that will only write output
for events at or above the provided verbosity Level
. Read moresource§fn with_filter<F>(self, filter: F) -> WithFilter<Self, F>
fn with_filter<F>(self, filter: F) -> WithFilter<Self, F>
Wraps
self
with a predicate that takes a span or event’s Metadata
and returns a bool
. The returned MakeWriter
’s
MakeWriter::make_writer_for
method will check the predicate to
determine if a writer should be produced for a given span or event. Read moresource§fn and<B>(self, other: B) -> Tee<Self, B> ⓘwhere
Self: Sized,
B: MakeWriter<'a>,
fn and<B>(self, other: B) -> Tee<Self, B> ⓘwhere
Self: Sized,
B: MakeWriter<'a>,
Combines
self
with another type implementing MakeWriter
, returning
a new MakeWriter
that produces writers that write to both
outputs. Read moresource§fn or_else<W, B>(self, other: B) -> OrElse<Self, B>
fn or_else<W, B>(self, other: B) -> OrElse<Self, B>
Combines
self
with another type implementing MakeWriter
, returning
a new MakeWriter
that calls other
’s make_writer
if self
’s
make_writer
returns OptionalWriter::none
. Read more