[][src]Struct astrolog::Record

pub struct Record {
    pub dt: DateTime<Utc>,
    pub level: Level,
    pub msg: String,
    pub context: Context,
}

Fields

dt: DateTime<Utc>level: Levelmsg: Stringcontext: Context

Methods

impl Record[src]

pub fn empty() -> Record[src]

pub fn new<M>(level: Level, msg: M) -> Record where
    M: Into<String>, 
[src]

pub fn set_context<V: Into<Context>>(&mut self, context: V) -> &mut Self[src]

pub fn with_context<V: Into<Context>>(self, context: V) -> Self[src]

pub fn set<V>(&mut self, k: &str, v: V) -> &mut Self where
    V: Serialize
[src]

pub fn with<V>(self, k: &str, v: V) -> Self where
    V: Serialize
[src]

pub fn set_error(&mut self, e: &dyn Error) -> &mut Self[src]

pub fn with_error(self, e: &dyn Error) -> Self[src]

pub fn merge_context<V: Into<Context>>(&mut self, context: V) -> &mut Self[src]

pub fn override_context<V: Into<Context>>(&mut self, context: V) -> &mut Self[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.