pub struct DecisionRule {
pub input_entries: Vec<InputEntry>,
pub output_entries: Vec<OutputEntry>,
pub annotation_entries: Vec<AnnotationEntry>,
}
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 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 DecisionRule
impl Debug for DecisionRule
Source§impl From<DecisionRule> for DecisionRule
impl From<DecisionRule> for DecisionRule
Source§fn from(value: RecognizedDecisionRule) -> Self
fn from(value: RecognizedDecisionRule) -> Self
Converts to this type from the input type.
Source§impl PartialEq for DecisionRule
impl PartialEq for DecisionRule
impl Eq for DecisionRule
impl StructuralPartialEq for DecisionRule
Auto Trait Implementations§
impl Freeze for DecisionRule
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.