pub struct ApplicationRuleBasedValueSpecification {
pub label: Option<String>,
pub category: ApplicationPrimitiveCategory,
pub sw_axis_cont: Vec<RuleBasedAxisCont>,
pub sw_value_cont: RuleBasedValueCont,
}
Expand description
A rule to generate application values for an array value specification
Fields§
§label: Option<String>
SHORT-LABEL: used to identify the application value in a human readable way. This is used when the application value is part of a record.
category: ApplicationPrimitiveCategory
category of the application value
sw_axis_cont: Vec<RuleBasedAxisCont>
rule-based axis values of a compound primitive data type. Required for categories ResAxis
, Cure, Map, Cuboid, Cube4, Cube5
sw_value_cont: RuleBasedValueCont
rule-based values of a compound primitive data type
Trait Implementations§
Source§impl Clone for ApplicationRuleBasedValueSpecification
impl Clone for ApplicationRuleBasedValueSpecification
Source§fn clone(&self) -> ApplicationRuleBasedValueSpecification
fn clone(&self) -> ApplicationRuleBasedValueSpecification
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 From<ApplicationRuleBasedValueSpecification> for ValueSpecification
impl From<ApplicationRuleBasedValueSpecification> for ValueSpecification
Source§fn from(value_spec: ApplicationRuleBasedValueSpecification) -> Self
fn from(value_spec: ApplicationRuleBasedValueSpecification) -> Self
Converts to this type from the input type.
Source§impl PartialEq for ApplicationRuleBasedValueSpecification
impl PartialEq for ApplicationRuleBasedValueSpecification
Source§fn eq(&self, other: &ApplicationRuleBasedValueSpecification) -> bool
fn eq(&self, other: &ApplicationRuleBasedValueSpecification) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ApplicationRuleBasedValueSpecification
Auto Trait Implementations§
impl Freeze for ApplicationRuleBasedValueSpecification
impl !RefUnwindSafe for ApplicationRuleBasedValueSpecification
impl Send for ApplicationRuleBasedValueSpecification
impl Sync for ApplicationRuleBasedValueSpecification
impl Unpin for ApplicationRuleBasedValueSpecification
impl !UnwindSafe for ApplicationRuleBasedValueSpecification
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