Skip to main content

SinkRecord

Struct SinkRecord 

Source
pub struct SinkRecord<'a> {
    pub timestamp: &'a str,
    pub level: Level,
    pub target: &'a str,
    pub message: &'a str,
    pub prefix: &'a str,
}
Expand description

Single log record handed to a Sink. Borrows from the active log::Record and the SDK’s per-record context — do not retain references past the emit call.

Fields§

§timestamp: &'a str

Formatted timestamp (YYYY-MM-DD HH:MM:SS) of the record.

§level: Level

Log level of the record (ERROR, WARN, INFO, DEBUG, TRACE).

§target: &'a str

Log target reported by the log::Record (the originating module path by default).

§message: &'a str

Formatted message body.

§prefix: &'a str

Plugin prefix ([crate-name] by default).

Trait Implementations§

Source§

impl<'a> Debug for SinkRecord<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for SinkRecord<'a>

§

impl<'a> RefUnwindSafe for SinkRecord<'a>

§

impl<'a> Send for SinkRecord<'a>

§

impl<'a> Sync for SinkRecord<'a>

§

impl<'a> Unpin for SinkRecord<'a>

§

impl<'a> UnsafeUnpin for SinkRecord<'a>

§

impl<'a> UnwindSafe for SinkRecord<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.