pub struct OutputClause {
pub type_ref: Option<String>,
pub name: Option<String>,
pub allowed_output_values: Option<String>,
pub default_output_entry: Option<String>,
}
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 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 OutputClause
impl Debug for OutputClause
Source§impl From<OutputClause> for OutputClause
impl From<OutputClause> for OutputClause
Source§fn from(value: RecognizedOutputClause) -> Self
fn from(value: RecognizedOutputClause) -> Self
Converts to this type from the input type.
Source§impl PartialEq for OutputClause
impl PartialEq for OutputClause
impl Eq for OutputClause
impl StructuralPartialEq for OutputClause
Auto Trait Implementations§
impl Freeze for OutputClause
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
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.