pub struct AxEventEnvelope {
pub specversion: String,
pub id: String,
pub source: String,
pub type: String,
pub subject: Option<String>,
pub data: Value,
pub extensions: Map<String, Value>,
pub correlation: Vec<AxEventCorrelationKey>,
}Fields§
§specversion: String§id: String§source: String§type: String§subject: Option<String>§data: Value§extensions: Map<String, Value>§correlation: Vec<AxEventCorrelationKey>Trait Implementations§
Source§impl Clone for AxEventEnvelope
impl Clone for AxEventEnvelope
Source§fn clone(&self) -> AxEventEnvelope
fn clone(&self) -> AxEventEnvelope
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 AxEventEnvelope
impl Debug for AxEventEnvelope
Source§impl<'de> Deserialize<'de> for AxEventEnvelope
impl<'de> Deserialize<'de> for AxEventEnvelope
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 AxEventEnvelope
impl RefUnwindSafe for AxEventEnvelope
impl Send for AxEventEnvelope
impl Sync for AxEventEnvelope
impl Unpin for AxEventEnvelope
impl UnsafeUnpin for AxEventEnvelope
impl UnwindSafe for AxEventEnvelope
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