[][src]Struct sincere::log::Record

pub struct Record {
    pub metadata: Metadata,
    pub message: String,
    pub module_path: Option<String>,
    pub file: Option<String>,
    pub line: Option<u32>,
}

Fields

metadata: Metadatamessage: Stringmodule_path: Option<String>file: Option<String>line: Option<u32>

Methods

impl Record[src]

pub fn new(
    metadata: Metadata,
    message: String,
    module_path: Option<String>,
    file: Option<String>,
    line: Option<u32>
) -> Record
[src]

pub fn empty() -> Record[src]

pub fn metadata(&mut self, metadata: Metadata) -> &mut Record[src]

pub fn message(&mut self, message: String) -> &mut Record[src]

pub fn module_path(&mut self, module_path: Option<String>) -> &mut Record[src]

pub fn file(&mut self, file: Option<String>) -> &mut Record[src]

pub fn line(&mut self, line: Option<u32>) -> &mut Record[src]

Trait Implementations

impl Clone for Record[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Record[src]

Auto Trait Implementations

impl Send for Record

impl Sync for Record

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

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

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

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

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Erased for T