Enum zen_engine::model::DecisionNodeKind
source · pub enum DecisionNodeKind {
InputNode,
OutputNode,
FunctionNode {
content: String,
},
DecisionNode {
content: DecisionNodeContent,
},
DecisionTableNode {
content: DecisionTableContent,
},
}Variants§
InputNode
OutputNode
FunctionNode
DecisionNode
Fields
§
content: DecisionNodeContentDecisionTableNode
Fields
§
content: DecisionTableContentTrait Implementations§
source§impl Clone for DecisionNodeKind
impl Clone for DecisionNodeKind
source§fn clone(&self) -> DecisionNodeKind
fn clone(&self) -> DecisionNodeKind
Returns a copy 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 DecisionNodeKind
impl Debug for DecisionNodeKind
source§impl<'de> Deserialize<'de> for DecisionNodeKind
impl<'de> Deserialize<'de> for DecisionNodeKind
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<DecisionNodeKind> for DecisionNodeKind
impl PartialEq<DecisionNodeKind> for DecisionNodeKind
source§fn eq(&self, other: &DecisionNodeKind) -> bool
fn eq(&self, other: &DecisionNodeKind) -> bool
This method tests for
self and other values to be equal, and is used
by ==.