pub enum DecisionTableOrientation {
RuleAsRow,
RuleAsColumn,
CrossTable,
}Expand description
Orientation of the decision table.
Variants§
RuleAsRow
Decision table is presented horizontally, rules are presented as rows.
RuleAsColumn
Decision table is presented vertically, rules are presented as columns.
CrossTable
Decision table is presented as crosstab, rules are composed from two input dimensions.
Trait Implementations§
source§impl Clone for DecisionTableOrientation
impl Clone for DecisionTableOrientation
source§fn clone(&self) -> DecisionTableOrientation
fn clone(&self) -> DecisionTableOrientation
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 DecisionTableOrientation
impl Debug for DecisionTableOrientation
source§impl Display for DecisionTableOrientation
impl Display for DecisionTableOrientation
Implementation of Display for DecisionTableOrientation.
source§impl PartialEq for DecisionTableOrientation
impl PartialEq for DecisionTableOrientation
source§fn eq(&self, other: &DecisionTableOrientation) -> bool
fn eq(&self, other: &DecisionTableOrientation) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl TryFrom<&str> for DecisionTableOrientation
impl TryFrom<&str> for DecisionTableOrientation
impl Eq for DecisionTableOrientation
impl StructuralEq for DecisionTableOrientation
impl StructuralPartialEq for DecisionTableOrientation
Auto Trait Implementations§
impl RefUnwindSafe for DecisionTableOrientation
impl Send for DecisionTableOrientation
impl Sync for DecisionTableOrientation
impl Unpin for DecisionTableOrientation
impl UnwindSafe for DecisionTableOrientation
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.