pub struct IncomingEvent {
pub event: String,
pub properties: Value,
}Expand description
Represents an incoming event before processing
Fields§
§event: StringThe primary event identifier/name
properties: ValueAdditional event properties as arbitrary JSON
Implementations§
Source§impl IncomingEvent
impl IncomingEvent
Trait Implementations§
Source§impl Clone for IncomingEvent
impl Clone for IncomingEvent
Source§fn clone(&self) -> IncomingEvent
fn clone(&self) -> IncomingEvent
Returns a duplicate of the value. Read more
1.0.0 · 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 IncomingEvent
impl Debug for IncomingEvent
Source§impl<'de> Deserialize<'de> for IncomingEvent
impl<'de> Deserialize<'de> for IncomingEvent
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 IncomingEvent
impl RefUnwindSafe for IncomingEvent
impl Send for IncomingEvent
impl Sync for IncomingEvent
impl Unpin for IncomingEvent
impl UnsafeUnpin for IncomingEvent
impl UnwindSafe for IncomingEvent
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