pub struct RuntimeEventEnvelope {
pub schema_version: u32,
pub seq: u64,
pub event: String,
pub kind: String,
pub thread_id: String,
pub turn_id: Option<String>,
pub item_id: Option<String>,
pub timestamp: String,
pub created_at: Option<String>,
pub payload: Value,
pub extra: BTreeMap<String, Value>,
}Fields§
§schema_version: u32§seq: u64§event: String§kind: String§thread_id: String§turn_id: Option<String>§item_id: Option<String>§timestamp: String§created_at: Option<String>§payload: Value§extra: BTreeMap<String, Value>Trait Implementations§
Source§impl Clone for RuntimeEventEnvelope
impl Clone for RuntimeEventEnvelope
Source§fn clone(&self) -> RuntimeEventEnvelope
fn clone(&self) -> RuntimeEventEnvelope
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 RuntimeEventEnvelope
impl Debug for RuntimeEventEnvelope
Source§impl<'de> Deserialize<'de> for RuntimeEventEnvelope
impl<'de> Deserialize<'de> for RuntimeEventEnvelope
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RuntimeEventEnvelope
impl RefUnwindSafe for RuntimeEventEnvelope
impl Send for RuntimeEventEnvelope
impl Sync for RuntimeEventEnvelope
impl Unpin for RuntimeEventEnvelope
impl UnsafeUnpin for RuntimeEventEnvelope
impl UnwindSafe for RuntimeEventEnvelope
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