pub enum StructureMapGroupRuleTargetParameterValue {
Id(Id),
String(String),
Boolean(Boolean),
Integer(Integer),
Decimal(Decimal),
Invalid,
}Expand description
Parameter value - variable or literal.
Variants§
Trait Implementations§
Source§impl Clone for StructureMapGroupRuleTargetParameterValue
impl Clone for StructureMapGroupRuleTargetParameterValue
Source§fn clone(&self) -> StructureMapGroupRuleTargetParameterValue
fn clone(&self) -> StructureMapGroupRuleTargetParameterValue
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for StructureMapGroupRuleTargetParameterValue
impl Default for StructureMapGroupRuleTargetParameterValue
Source§fn default() -> StructureMapGroupRuleTargetParameterValue
fn default() -> StructureMapGroupRuleTargetParameterValue
Returns the “default value” for a type. Read more
Source§impl PartialEq for StructureMapGroupRuleTargetParameterValue
impl PartialEq for StructureMapGroupRuleTargetParameterValue
Source§fn eq(&self, other: &StructureMapGroupRuleTargetParameterValue) -> bool
fn eq(&self, other: &StructureMapGroupRuleTargetParameterValue) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for StructureMapGroupRuleTargetParameterValue
Auto Trait Implementations§
impl Freeze for StructureMapGroupRuleTargetParameterValue
impl RefUnwindSafe for StructureMapGroupRuleTargetParameterValue
impl Send for StructureMapGroupRuleTargetParameterValue
impl Sync for StructureMapGroupRuleTargetParameterValue
impl Unpin for StructureMapGroupRuleTargetParameterValue
impl UnwindSafe for StructureMapGroupRuleTargetParameterValue
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