pub enum FanoutGate {
Threshold {
step_id: Option<String>,
field: String,
value: Option<JsonValue>,
compared_to: Option<JsonNumber>,
action: FanoutGateAction,
},
Conflict {
field: String,
values: Option<BTreeMap<String, JsonValue>>,
action: FanoutGateAction,
},
}Variants§
Trait Implementations§
Source§impl Clone for FanoutGate
impl Clone for FanoutGate
Source§fn clone(&self) -> FanoutGate
fn clone(&self) -> FanoutGate
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 FanoutGate
impl Debug for FanoutGate
Source§impl<'de> Deserialize<'de> for FanoutGate
impl<'de> Deserialize<'de> for FanoutGate
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 FanoutGate
impl PartialEq for FanoutGate
Source§fn eq(&self, other: &FanoutGate) -> bool
fn eq(&self, other: &FanoutGate) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for FanoutGate
impl Serialize for FanoutGate
impl StructuralPartialEq for FanoutGate
Auto Trait Implementations§
impl Freeze for FanoutGate
impl RefUnwindSafe for FanoutGate
impl Send for FanoutGate
impl Sync for FanoutGate
impl Unpin for FanoutGate
impl UnsafeUnpin for FanoutGate
impl UnwindSafe for FanoutGate
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