[][src]Struct lightning::util::logger::Record

pub struct Record<'a> {
    pub level: Level,
    pub args: Arguments<'a>,
    pub module_path: &'a str,
    pub file: &'a str,
    pub line: u32,
}

A Record, unit of logging output with Metadata to enable filtering Module_path, file, line to inform on log's source

Fields

level: Level

The verbosity level of the message.

args: Arguments<'a>

The message body.

module_path: &'a str

The module path of the message.

file: &'a str

The source file containing the message.

line: u32

The line containing the message.

Methods

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

pub fn new(
    level: Level,
    args: Arguments<'a>,
    module_path: &'a str,
    file: &'a str,
    line: u32
) -> Record<'a>
[src]

Returns a new Record.

Trait Implementations

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

impl<'a> Debug 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 = !

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.