pub struct LoggedEvent {
pub rowid: i64,
pub envelope: RawEnvelope,
}Expand description
One persisted log row, returned from queries.
Fields§
§rowid: i64Auto-incrementing primary key; gives total replay order.
envelope: RawEnvelopeThe envelope as stored.
Trait Implementations§
Source§impl Clone for LoggedEvent
impl Clone for LoggedEvent
Source§fn clone(&self) -> LoggedEvent
fn clone(&self) -> LoggedEvent
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 moreAuto Trait Implementations§
impl Freeze for LoggedEvent
impl RefUnwindSafe for LoggedEvent
impl Send for LoggedEvent
impl Sync for LoggedEvent
impl Unpin for LoggedEvent
impl UnsafeUnpin for LoggedEvent
impl UnwindSafe for LoggedEvent
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