pub struct UnifiedLogEntry {
pub timestamp: SystemTime,
pub user_identifier: Option<String>,
pub trace_chain: Vec<TraceNode>,
pub payload: LogPayload,
}Fields§
§timestamp: SystemTime§user_identifier: Option<String>§trace_chain: Vec<TraceNode>§payload: LogPayloadTrait Implementations§
Source§impl Clone for UnifiedLogEntry
impl Clone for UnifiedLogEntry
Source§fn clone(&self) -> UnifiedLogEntry
fn clone(&self) -> UnifiedLogEntry
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 UnifiedLogEntry
impl Debug for UnifiedLogEntry
Source§impl PartialEq for UnifiedLogEntry
impl PartialEq for UnifiedLogEntry
Source§fn eq(&self, other: &UnifiedLogEntry) -> bool
fn eq(&self, other: &UnifiedLogEntry) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for UnifiedLogEntry
Auto Trait Implementations§
impl Freeze for UnifiedLogEntry
impl RefUnwindSafe for UnifiedLogEntry
impl Send for UnifiedLogEntry
impl Sync for UnifiedLogEntry
impl Unpin for UnifiedLogEntry
impl UnsafeUnpin for UnifiedLogEntry
impl UnwindSafe for UnifiedLogEntry
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