pub struct RuntimeProjectionEvent {
pub rule_id: String,
pub projected_input_id: InputId,
pub source_event_id: RuntimeEventId,
}Expand description
Projection-derived events.
Fields§
§rule_id: StringThe projection rule that generated this event.
projected_input_id: InputIdThe projected input ID.
source_event_id: RuntimeEventIdSource event that triggered the projection.
Trait Implementations§
Source§impl Clone for RuntimeProjectionEvent
impl Clone for RuntimeProjectionEvent
Source§fn clone(&self) -> RuntimeProjectionEvent
fn clone(&self) -> RuntimeProjectionEvent
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 RuntimeProjectionEvent
impl Debug for RuntimeProjectionEvent
Source§impl<'de> Deserialize<'de> for RuntimeProjectionEvent
impl<'de> Deserialize<'de> for RuntimeProjectionEvent
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 RuntimeProjectionEvent
impl RefUnwindSafe for RuntimeProjectionEvent
impl Send for RuntimeProjectionEvent
impl Sync for RuntimeProjectionEvent
impl Unpin for RuntimeProjectionEvent
impl UnsafeUnpin for RuntimeProjectionEvent
impl UnwindSafe for RuntimeProjectionEvent
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