Struct dsntk_model::OutputClause
source · pub struct OutputClause {
pub type_ref: Option<String>,
pub name: Option<String>,
pub allowed_output_values: Option<String>,
pub default_output_entry: Option<String>,
}Expand description
Fields§
§type_ref: Option<String>Type reference may specify the type to be used as decision table’s output when more than one output clause is present.
name: Option<String>The name of the output component when the decision table contains more than one output clause.
allowed_output_values: Option<String>Unary tests that constrain the result of output entries corresponding to this output clause.
default_output_entry: Option<String>Default output expression, selected in incomplete table when no rules match for the decision table.
Trait Implementations§
source§impl Clone for OutputClause
impl Clone for OutputClause
source§fn clone(&self) -> OutputClause
fn clone(&self) -> OutputClause
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 OutputClause
impl Debug for OutputClause
source§impl PartialEq for OutputClause
impl PartialEq for OutputClause
source§fn eq(&self, other: &OutputClause) -> bool
fn eq(&self, other: &OutputClause) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for OutputClause
impl StructuralEq for OutputClause
impl StructuralPartialEq for OutputClause
Auto Trait Implementations§
impl RefUnwindSafe for OutputClause
impl Send for OutputClause
impl Sync for OutputClause
impl Unpin for OutputClause
impl UnwindSafe for OutputClause
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.