pub struct ColumnRow {
pub wall_ts_us: i64,
pub agent: String,
pub event_type: EventType,
pub item_id: String,
pub parents: String,
pub itc: String,
pub value: String,
}Expand description
A single row extracted from the column arrays.
Useful for inspecting individual events without rebuilding a full Event.
Fields§
§wall_ts_us: i64Wall-clock timestamp.
agent: StringAgent identifier.
event_type: EventTypeEvent type discriminant.
item_id: StringItem ID string.
parents: StringComma-joined parent hashes (empty for root events).
itc: StringITC stamp.
value: StringJSON payload string.
Trait Implementations§
impl Eq for ColumnRow
impl StructuralPartialEq for ColumnRow
Auto Trait Implementations§
impl Freeze for ColumnRow
impl RefUnwindSafe for ColumnRow
impl Send for ColumnRow
impl Sync for ColumnRow
impl Unpin for ColumnRow
impl UnsafeUnpin for ColumnRow
impl UnwindSafe for ColumnRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.