Struct log::RecordBuilder[][src]

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

Builder for Record.

Typically should only be used by log library creators or for testing and "shim loggers". The RecordBuilder can set the different parameters of Record object, and returns the created object when build is called.

Examples

use log::{Level, Record};

let record = Record::builder()
                .args(format_args!("Error!"))
                .level(Level::Error)
                .target("myApp")
                .file(Some("server.rs"))
                .line(Some(144))
                .module_path(Some("server"))
                .build();

Alternatively, use MetadataBuilder:

use log::{Record, Level, MetadataBuilder};

let error_metadata = MetadataBuilder::new()
                        .target("myApp")
                        .level(Level::Error)
                        .build();

let record = Record::builder()
                .metadata(error_metadata)
                .args(format_args!("Error!"))
                .line(Some(433))
                .file(Some("app.rs"))
                .module_path(Some("server"))
                .build();

Methods

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

Construct new RecordBuilder.

The default options are:

Set args.

Set metadata. Construct a Metadata object with MetadataBuilder.

Set file

Set line

Invoke the builder and return a Record

Trait Implementations

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

Formats the value using the given formatter. Read more

Auto Trait Implementations

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

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