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 of 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
source§impl From<DecisionTableOrientation> for DecisionTableOrientation
impl From<DecisionTableOrientation> for DecisionTableOrientation
source§fn from(value: RecognizedDecisionTableOrientation) -> Self
fn from(value: RecognizedDecisionTableOrientation) -> Self
Converts to this type from the input type.
source§impl PartialEq for DecisionTableOrientation
impl PartialEq for DecisionTableOrientation
source§impl TryFrom<&str> for DecisionTableOrientation
impl TryFrom<&str> for DecisionTableOrientation
impl Eq for DecisionTableOrientation
impl StructuralPartialEq for DecisionTableOrientation
Auto Trait Implementations§
impl Freeze for DecisionTableOrientation
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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.