pub struct EventRecord {
pub type_code: u32,
pub sequence: u64,
pub tick: Tick,
pub payload: Bytes,
}Expand description
Deterministic event record — what emit_event accumulates per tick
before the pipeline drains them into the WAL Op::EmitEvent stream.
Fields§
§type_code: u32Event TypeCode (runtime registry pin).
sequence: u64Per-context monotone sequence — establishes emission order within the same tick.
tick: TickTick at which the event was emitted.
payload: BytesPostcard-serialized event payload.
Trait Implementations§
Source§impl Clone for EventRecord
impl Clone for EventRecord
Source§fn clone(&self) -> EventRecord
fn clone(&self) -> EventRecord
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 EventRecord
impl Debug for EventRecord
Source§impl PartialEq for EventRecord
impl PartialEq for EventRecord
Source§fn eq(&self, other: &EventRecord) -> bool
fn eq(&self, other: &EventRecord) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for EventRecord
impl StructuralPartialEq for EventRecord
Auto Trait Implementations§
impl !Freeze for EventRecord
impl RefUnwindSafe for EventRecord
impl Send for EventRecord
impl Sync for EventRecord
impl Unpin for EventRecord
impl UnsafeUnpin for EventRecord
impl UnwindSafe for EventRecord
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