[][src]Struct witchcraft_log::Record

pub struct Record<'a> { /* fields omitted */ }

A log record.

Methods

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

pub fn builder() -> RecordBuilder<'a>[src]

Returns a RecordBuilder initialized to default values.

pub fn metadata(&self) -> &Metadata<'a>[src]

Returns the record's metadata.

pub fn level(&self) -> Level[src]

Returns the record's verbosity level.

pub fn target(&self) -> &'a str[src]

Returns the record's target.

pub fn file(&self) -> Option<&'a str>[src]

Returns the file containing the code that created the record.

pub fn line(&self) -> Option<u32>[src]

Returns the line of the code that created the record.

pub fn message(&self) -> &'static str[src]

Returns the record's message.

pub fn safe_params(&self) -> &'a [(&'static str, &dyn Serialize)][src]

Returns the record's safe-loggable parameters.

pub fn unsafe_params(&self) -> &'a [(&'static str, &dyn Serialize)][src]

Returns the record's unsafe-loggable parameters.

pub fn error(&self) -> Option<&'a Error>[src]

Returns the error associated with the record.

Trait Implementations

impl<'a> Clone for Record<'a>[src]

Auto Trait Implementations

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

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

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

impl<'a> Unpin for Record<'a>

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,