pub struct StreamRuleEngineState {
pub seen_match_keys: Vec<String>,
}Expand description
Holds stream rule engine state application-layer state or configuration. Use it with the documented coordinator methods; run, journal, event, provider, or port effects are called out on those methods rather than on construction.
Fields§
§seen_match_keys: Vec<String>Collection of seen match keys values. Ordering and membership should be treated as part of the serialized contract when relevant.
Trait Implementations§
Source§impl Clone for StreamRuleEngineState
impl Clone for StreamRuleEngineState
Source§fn clone(&self) -> StreamRuleEngineState
fn clone(&self) -> StreamRuleEngineState
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 StreamRuleEngineState
impl Debug for StreamRuleEngineState
Source§impl Default for StreamRuleEngineState
impl Default for StreamRuleEngineState
Source§fn default() -> StreamRuleEngineState
fn default() -> StreamRuleEngineState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StreamRuleEngineState
impl<'de> Deserialize<'de> for StreamRuleEngineState
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
Source§impl PartialEq for StreamRuleEngineState
impl PartialEq for StreamRuleEngineState
Source§fn eq(&self, other: &StreamRuleEngineState) -> bool
fn eq(&self, other: &StreamRuleEngineState) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StreamRuleEngineState
impl Serialize for StreamRuleEngineState
impl Eq for StreamRuleEngineState
impl StructuralPartialEq for StreamRuleEngineState
Auto Trait Implementations§
impl Freeze for StreamRuleEngineState
impl RefUnwindSafe for StreamRuleEngineState
impl Send for StreamRuleEngineState
impl Sync for StreamRuleEngineState
impl Unpin for StreamRuleEngineState
impl UnsafeUnpin for StreamRuleEngineState
impl UnwindSafe for StreamRuleEngineState
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