pub enum RuleAction {
ReturnValue {
value: Value,
},
ExecuteScript {
script: String,
},
CallFunction {
function: String,
args: Vec<Value>,
},
SetVariable {
name: String,
value: Value,
},
TriggerEvent {
event_type: String,
data: Value,
},
GotoRule {
rule_id: String,
},
Stop,
Composite {
actions: Vec<RuleAction>,
},
}Expand description
规则动作类型
Variants§
ReturnValue
返回固定值
ExecuteScript
执行脚本并返回结果
CallFunction
调用函数
SetVariable
修改上下文变量
TriggerEvent
触发事件
GotoRule
跳转到另一个规则
Stop
停止规则执行
Composite
组合多个动作
Fields
§
actions: Vec<RuleAction>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