Struct stakker::LogRecord[][src]

pub struct LogRecord<'a> {
    pub id: LogID,
    pub level: LogLevel,
    pub target: &'a str,
    pub fmt: Arguments<'a>,
    pub kvscan: &'a dyn Fn(&mut dyn LogVisitor),
}

Log record that is passed to a logger

Fields

id: LogID

Logging span identifier, or 0 for outside of a span

level: LogLevel

Logging level

target: &'a str

Logging target, or “”

fmt: Arguments<'a>

Freeform formatted text. This can be output with any macro that accepts a format-string, e.g. println!("{}", fmt).

kvscan: &'a dyn Fn(&mut dyn LogVisitor)

Key-value pairs. Call this function with your own LogVisitor and all the key-value pairs will be passed to that visitor in sequence.

Auto Trait Implementations

impl<'a> !RefUnwindSafe for LogRecord<'a>

impl<'a> !Send for LogRecord<'a>

impl<'a> !Sync for LogRecord<'a>

impl<'a> Unpin for LogRecord<'a>

impl<'a> !UnwindSafe for LogRecord<'a>

Blanket Implementations

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

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