Enum zen_engine::model::DecisionNodeKind
source · pub enum DecisionNodeKind {
InputNode,
OutputNode,
FunctionNode {
content: String,
},
DecisionNode {
content: DecisionNodeContent,
},
DecisionTableNode {
content: DecisionTableContent,
},
ExpressionNode {
content: ExpressionNodeContent,
},
}Variants§
InputNode
OutputNode
FunctionNode
DecisionNode
Fields
§
content: DecisionNodeContentDecisionTableNode
Fields
§
content: DecisionTableContentExpressionNode
Fields
§
content: ExpressionNodeContentTrait 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 ==.source§impl Serialize for DecisionNodeKind
impl Serialize for DecisionNodeKind
impl StructuralPartialEq for DecisionNodeKind
Auto Trait Implementations§
impl RefUnwindSafe for DecisionNodeKind
impl Send for DecisionNodeKind
impl Sync for DecisionNodeKind
impl Unpin for DecisionNodeKind
impl UnwindSafe for DecisionNodeKind
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