Struct zen_engine::model::DecisionContent
source · pub struct DecisionContent {
pub nodes: Vec<DecisionNode>,
pub edges: Vec<DecisionEdge>,
}Expand description
JDM Decision model
Fields§
§nodes: Vec<DecisionNode>§edges: Vec<DecisionEdge>Trait Implementations§
source§impl Clone for DecisionContent
impl Clone for DecisionContent
source§fn clone(&self) -> DecisionContent
fn clone(&self) -> DecisionContent
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 DecisionContent
impl Debug for DecisionContent
source§impl<'de> Deserialize<'de> for DecisionContent
impl<'de> Deserialize<'de> for DecisionContent
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 From<DecisionContent> for Decision<NoopLoader>
impl From<DecisionContent> for Decision<NoopLoader>
source§fn from(value: DecisionContent) -> Self
fn from(value: DecisionContent) -> Self
Converts to this type from the input type.
source§impl PartialEq for DecisionContent
impl PartialEq for DecisionContent
source§fn eq(&self, other: &DecisionContent) -> bool
fn eq(&self, other: &DecisionContent) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for DecisionContent
impl Serialize for DecisionContent
impl StructuralPartialEq for DecisionContent
Auto Trait Implementations§
impl RefUnwindSafe for DecisionContent
impl Send for DecisionContent
impl Sync for DecisionContent
impl Unpin for DecisionContent
impl UnwindSafe for DecisionContent
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