Struct tracing_subscriber::fmt::format::DefaultFields
source · [−]pub struct DefaultFields { /* private fields */ }
Expand description
The default FormatFields
implementation.
Implementations
sourceimpl DefaultFields
impl DefaultFields
sourcepub fn new() -> Self
pub fn new() -> Self
Returns a new default FormatFields
implementation.
Trait Implementations
sourceimpl Debug for DefaultFields
impl Debug for DefaultFields
sourceimpl Default for DefaultFields
impl Default for DefaultFields
sourceimpl<'a> MakeVisitor<&'a mut (dyn Write + 'a)> for DefaultFields
impl<'a> MakeVisitor<&'a mut (dyn Write + 'a)> for DefaultFields
type Visitor = DefaultVisitor<'a>
type Visitor = DefaultVisitor<'a>
The visitor type produced by this MakeVisitor
.
sourcefn make_visitor(&self, target: &'a mut dyn Write) -> Self::Visitor
fn make_visitor(&self, target: &'a mut dyn Write) -> Self::Visitor
Make a new visitor for the provided target
.
Auto Trait Implementations
impl RefUnwindSafe for DefaultFields
impl Send for DefaultFields
impl Sync for DefaultFields
impl Unpin for DefaultFields
impl UnwindSafe for DefaultFields
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T, M> MakeExt<T> for M where
M: MakeVisitor<T> + Sealed<MakeExtMarker<T>>,
impl<T, M> MakeExt<T> for M where
M: MakeVisitor<T> + Sealed<MakeExtMarker<T>>,
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more