pub enum CompositeRuleBasedValueArgument {
Application(ApplicationValueSpecification),
ApplicationRuleBased(ApplicationRuleBasedValueSpecification),
}
Expand description
specification of a composite value argument
Variants§
Application(ApplicationValueSpecification)
argument is an application value
ApplicationRuleBased(ApplicationRuleBasedValueSpecification)
argument is a rule-based application value
Trait Implementations§
Source§impl Clone for CompositeRuleBasedValueArgument
impl Clone for CompositeRuleBasedValueArgument
Source§fn clone(&self) -> CompositeRuleBasedValueArgument
fn clone(&self) -> CompositeRuleBasedValueArgument
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 PartialEq for CompositeRuleBasedValueArgument
impl PartialEq for CompositeRuleBasedValueArgument
Source§fn eq(&self, other: &CompositeRuleBasedValueArgument) -> bool
fn eq(&self, other: &CompositeRuleBasedValueArgument) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CompositeRuleBasedValueArgument
Auto Trait Implementations§
impl Freeze for CompositeRuleBasedValueArgument
impl !RefUnwindSafe for CompositeRuleBasedValueArgument
impl Send for CompositeRuleBasedValueArgument
impl Sync for CompositeRuleBasedValueArgument
impl Unpin for CompositeRuleBasedValueArgument
impl !UnwindSafe for CompositeRuleBasedValueArgument
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