pub struct EnrichedEntry {
pub entry: LogEntry,
pub session: Option<SessionSnapshot>,
}Expand description
A LogEntry paired with the session’s state snapshot at that point in time.
Fields§
§entry: LogEntry§session: Option<SessionSnapshot>None exactly when entry.uuid is None — system lines carry no session.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for EnrichedEntry
impl RefUnwindSafe for EnrichedEntry
impl Send for EnrichedEntry
impl Sync for EnrichedEntry
impl Unpin for EnrichedEntry
impl UnsafeUnpin for EnrichedEntry
impl UnwindSafe for EnrichedEntry
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