Struct log::Record
[−]
[src]
pub struct Record<'a> { /* fields omitted */ }The "payload" of a log message.
Use
Record structures are passed as parameters to the log
method of the Log trait. Logger implementors manipulate these
structures in order to display log messages. Records are automatically
created by the log! macro and so are not seen by log users.
Note that the level() and target() accessors are equivalent to
self.metadata().level() and self.metadata().target() respectively.
These methods are provided as a convenience for users of this structure.
Example
The following example shows a simple logger that displays the level,
module path, and message of any Record that is passed to it.
struct SimpleLogger; impl log::Log for SimpleLogger { fn enabled(&self, metadata: &log::Metadata) -> bool { true } fn log(&self, record: &log::Record) { if !self.enabled(record.metadata()) { return; } println!("{}:{} -- {}", record.level(), record.target(), record.args()); } fn flush(&self) {} }
Methods
impl<'a> Record<'a>[src]
fn builder() -> RecordBuilder<'a>[src]
Returns a new builder.
fn args(&self) -> &Arguments<'a>[src]
The message body.
fn metadata(&self) -> &Metadata<'a>[src]
Metadata about the log directive.
fn level(&self) -> Level[src]
The verbosity level of the message.
fn target(&self) -> &'a str[src]
The name of the target of the directive.
fn module_path(&self) -> Option<&'a str>[src]
The module path of the message.
fn file(&self) -> Option<&'a str>[src]
The source file containing the message.
fn line(&self) -> Option<u32>[src]
The line containing the message.
Trait Implementations
impl<'a> Clone for Record<'a>[src]
fn clone(&self) -> Record<'a>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more