Struct tracing_subscriber::fmt::format::PrettyFields
source · [−]pub struct PrettyFields { /* private fields */ }
Expand description
An excessively pretty, human-readable MakeVisitor
implementation.
Implementations
sourceimpl PrettyFields
impl PrettyFields
Trait Implementations
sourceimpl Debug for PrettyFields
impl Debug for PrettyFields
sourceimpl Default for PrettyFields
impl Default for PrettyFields
sourceimpl<'a> MakeVisitor<&'a mut (dyn Write + 'a)> for PrettyFields
impl<'a> MakeVisitor<&'a mut (dyn Write + 'a)> for PrettyFields
type Visitor = PrettyVisitor<'a>
type Visitor = PrettyVisitor<'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 PrettyFields
impl Send for PrettyFields
impl Sync for PrettyFields
impl Unpin for PrettyFields
impl UnwindSafe for PrettyFields
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