pub struct RuntimeLogRecord {
pub ts: String,
pub level: String,
pub target: String,
pub message: String,
pub trace_id: Option<String>,
pub span_id: Option<String>,
pub fields: Option<Value>,
}Fields§
§ts: String§level: String§target: String§message: String§trace_id: Option<String>§span_id: Option<String>§fields: Option<Value>Trait Implementations§
Source§impl Clone for RuntimeLogRecord
impl Clone for RuntimeLogRecord
Source§fn clone(&self) -> RuntimeLogRecord
fn clone(&self) -> RuntimeLogRecord
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RuntimeLogRecord
impl Debug for RuntimeLogRecord
Auto Trait Implementations§
impl Freeze for RuntimeLogRecord
impl RefUnwindSafe for RuntimeLogRecord
impl Send for RuntimeLogRecord
impl Sync for RuntimeLogRecord
impl Unpin for RuntimeLogRecord
impl UnsafeUnpin for RuntimeLogRecord
impl UnwindSafe for RuntimeLogRecord
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more