#[non_exhaustive]
pub enum ReplicationRuleStatus {
    Disabled,
    Enabled,
    Unknown(UnknownVariantValue),
}
Expand description

When writing a match expression against ReplicationRuleStatus, it is important to ensure your code is forward-compatible. That is, if a match arm handles a case for a feature that is supported by the service but has not been represented as an enum variant in a current version of SDK, your code should continue to work when you upgrade SDK to a future version in which the enum does include a variant for that feature.

Here is an example of how you can make a match expression forward-compatible:

# let replicationrulestatus = unimplemented!();
match replicationrulestatus {
    ReplicationRuleStatus::Disabled => { /* ... */ },
    ReplicationRuleStatus::Enabled => { /* ... */ },
    other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
    _ => { /* ... */ },
}

The above code demonstrates that when replicationrulestatus represents NewFeature, the execution path will lead to the second last match arm, even though the enum does not contain a variant ReplicationRuleStatus::NewFeature in the current version of SDK. The reason is that the variable other, created by the @ operator, is bound to ReplicationRuleStatus::Unknown(UnknownVariantValue("NewFeature".to_owned())) and calling as_str on it yields "NewFeature". This match expression is forward-compatible when executed with a newer version of SDK where the variant ReplicationRuleStatus::NewFeature is defined. Specifically, when replicationrulestatus represents NewFeature, the execution path will hit the second last match arm as before by virtue of calling as_str on ReplicationRuleStatus::NewFeature also yielding "NewFeature".

Explicitly matching on the Unknown variant should be avoided for two reasons:

  • The inner data UnknownVariantValue is opaque, and no further information can be extracted.
  • It might inadvertently shadow other intended match arms.

Variants (Non-exhaustive)§

This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
§

Disabled

§

Enabled

§

Unknown(UnknownVariantValue)

Unknown contains new variants that have been added since this code was generated.

Implementations§

Returns the &str value of the enum member.

Examples found in repository?
src/model.rs (line 8094)
8093
8094
8095
    fn as_ref(&self) -> &str {
        self.as_str()
    }
More examples
Hide additional examples
src/xml_ser.rs (line 1690)
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
pub fn serialize_structure_crate_model_replication_rule(
    input: &crate::model::ReplicationRule,
    writer: aws_smithy_xml::encode::ElWriter,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
    #[allow(unused_mut)]
    let mut scope = writer.finish();
    if let Some(var_139) = &input.id {
        let mut inner_writer = scope.start_el("ID").finish();
        inner_writer.data(var_139.as_str());
    }
    if input.priority != 0 {
        let mut inner_writer = scope.start_el("Priority").finish();
        inner_writer.data(aws_smithy_types::primitive::Encoder::from(input.priority).encode());
    }
    if let Some(var_140) = &input.prefix {
        let mut inner_writer = scope.start_el("Prefix").finish();
        inner_writer.data(var_140.as_str());
    }
    if let Some(var_141) = &input.filter {
        let inner_writer = scope.start_el("Filter");
        crate::xml_ser::serialize_union_crate_model_replication_rule_filter(var_141, inner_writer)?
    }
    if let Some(var_142) = &input.status {
        let mut inner_writer = scope.start_el("Status").finish();
        inner_writer.data(var_142.as_str());
    }
    if let Some(var_143) = &input.source_selection_criteria {
        let inner_writer = scope.start_el("SourceSelectionCriteria");
        crate::xml_ser::serialize_structure_crate_model_source_selection_criteria(
            var_143,
            inner_writer,
        )?
    }
    if let Some(var_144) = &input.existing_object_replication {
        let inner_writer = scope.start_el("ExistingObjectReplication");
        crate::xml_ser::serialize_structure_crate_model_existing_object_replication(
            var_144,
            inner_writer,
        )?
    }
    if let Some(var_145) = &input.destination {
        let inner_writer = scope.start_el("Destination");
        crate::xml_ser::serialize_structure_crate_model_destination(var_145, inner_writer)?
    }
    if let Some(var_146) = &input.delete_marker_replication {
        let inner_writer = scope.start_el("DeleteMarkerReplication");
        crate::xml_ser::serialize_structure_crate_model_delete_marker_replication(
            var_146,
            inner_writer,
        )?
    }
    scope.finish();
    Ok(())
}

Returns all the &str values of the enum members.

Trait Implementations§

Converts this type into a shared reference of the (usually inferred) input type.
Returns a copy of the value. Read more
Performs copy-assignment from source. Read more
Formats the value using the given formatter. Read more
Converts to this type from the input type.
The associated error which can be returned from parsing.
Parses a string s to return a value of this type. Read more
Feeds this value into the given Hasher. Read more
Feeds a slice of this type into the given Hasher. Read more
This method returns an Ordering between self and other. Read more
Compares and returns the maximum of two values. Read more
Compares and returns the minimum of two values. Read more
Restrict a value to a certain interval. Read more
This method tests for self and other values to be equal, and is used by ==. Read more
This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason. Read more
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more
Compare self to key and return true if they are equal.

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self
The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more