pub struct OutputClause {
pub output_component_name: Option<String>,
pub allowed_output_values: Option<String>,
pub default_output_value: Option<String>,
}
Expand description
Represents an output clause.
Fields§
§output_component_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 output clause.
default_output_value: 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 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