pub enum RuleAction {
Set {
address: String,
value: Value,
},
Publish {
address: String,
signal: SignalType,
value: Option<Value>,
},
SetFromTrigger {
address: String,
transform: Transform,
},
Delay {
milliseconds: u64,
},
}Expand description
An action to execute when a rule fires
Variants§
Set
Set a parameter to a specific value
Publish
Publish an event
SetFromTrigger
Copy the trigger’s value to another address, with optional transform
Delay
Delay before the next action in the sequence
Trait Implementations§
Source§impl Clone for RuleAction
impl Clone for RuleAction
Source§fn clone(&self) -> RuleAction
fn clone(&self) -> RuleAction
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 RuleAction
impl Debug for RuleAction
Source§impl<'de> Deserialize<'de> for RuleAction
impl<'de> Deserialize<'de> for RuleAction
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 RuleAction
impl RefUnwindSafe for RuleAction
impl Send for RuleAction
impl Sync for RuleAction
impl Unpin for RuleAction
impl UnsafeUnpin for RuleAction
impl UnwindSafe for RuleAction
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