Struct tracing_subscriber::fmt::format::DefaultVisitor[][src]

pub struct DefaultVisitor<'a> { /* fields omitted */ }
This is supported on crate feature fmt only.

The visitor produced by DefaultFields's MakeVisitor implementation.

Implementations

impl<'a> DefaultVisitor<'a>[src]

pub fn new(writer: &'a mut dyn Write, is_empty: bool) -> Self[src]

Returns a new default visitor that formats to the provided writer.

Arguments

  • writer: the writer to format to.
  • is_empty: whether or not any fields have been previously written to that writer.

Trait Implementations

impl<'a> Debug for DefaultVisitor<'a>[src]

impl<'a> Visit for DefaultVisitor<'a>[src]

impl<'a> VisitFmt for DefaultVisitor<'a>[src]

impl<'a> VisitOutput<Result<(), Error>> for DefaultVisitor<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for DefaultVisitor<'a>[src]

impl<'a> !Send for DefaultVisitor<'a>[src]

impl<'a> !Sync for DefaultVisitor<'a>[src]

impl<'a> Unpin for DefaultVisitor<'a>[src]

impl<'a> !UnwindSafe for DefaultVisitor<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.