pub struct Event {Show 13 fields
pub event_id: String,
pub run_id: String,
pub session_id: Option<String>,
pub step_id: Option<String>,
pub seq: u64,
pub event_type: String,
pub timestamp: f64,
pub agent_role: Option<String>,
pub state_version: Option<u64>,
pub causal_token: Option<String>,
pub payload_hash: String,
pub payload_ref: String,
pub payload: State,
}Fields§
§event_id: String§run_id: String§session_id: Option<String>§step_id: Option<String>§seq: u64§event_type: String§timestamp: f64§agent_role: Option<String>§state_version: Option<u64>§causal_token: Option<String>§payload_hash: String§payload_ref: String§payload: StateTrait Implementations§
Auto Trait Implementations§
impl Freeze for Event
impl RefUnwindSafe for Event
impl Send for Event
impl Sync for Event
impl Unpin for Event
impl UnsafeUnpin for Event
impl UnwindSafe for Event
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