Struct dsntk_model::DecisionRule
source · pub struct DecisionRule {
pub input_entries: Vec<InputEntry>,
pub output_entries: Vec<OutputEntry>,
pub annotation_entries: Vec<AnnotationEntry>,
}Expand description
Fields§
§input_entries: Vec<InputEntry>Ordered list of input entries that compose this decision rule.
output_entries: Vec<OutputEntry>Ordered list of output entries that compose this decision rule.
annotation_entries: Vec<AnnotationEntry>Ordered list of rule annotations that compose this decision rule.
Trait Implementations§
source§impl Clone for DecisionRule
impl Clone for DecisionRule
source§fn clone(&self) -> DecisionRule
fn clone(&self) -> DecisionRule
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 DecisionRule
impl Debug for DecisionRule
source§impl PartialEq for DecisionRule
impl PartialEq for DecisionRule
source§fn eq(&self, other: &DecisionRule) -> bool
fn eq(&self, other: &DecisionRule) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for DecisionRule
impl StructuralEq for DecisionRule
impl StructuralPartialEq for DecisionRule
Auto Trait Implementations§
impl RefUnwindSafe for DecisionRule
impl Send for DecisionRule
impl Sync for DecisionRule
impl Unpin for DecisionRule
impl UnwindSafe for DecisionRule
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
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.