pub enum SessionLogEntry {
Persisted {
line: SessionLine,
event: Box<SessionEvent>,
},
Transient {
line: SessionLine,
},
Malformed {
line: SessionLine,
error: Error,
},
}Variants§
Implementations§
Source§impl SessionLogEntry
impl SessionLogEntry
pub fn line(&self) -> &SessionLine
Trait Implementations§
Auto Trait Implementations§
impl !RefUnwindSafe for SessionLogEntry
impl !UnwindSafe for SessionLogEntry
impl Freeze for SessionLogEntry
impl Send for SessionLogEntry
impl Sync for SessionLogEntry
impl Unpin for SessionLogEntry
impl UnsafeUnpin for SessionLogEntry
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