#[non_exhaustive]
pub enum ModelStatus {
    Deleting,
    InError,
    Stopped,
    StopRequested,
    Submitted,
    Trained,
    Training,
    Unknown(UnknownVariantValue),
}
Expand description

When writing a match expression against ModelStatus, 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 modelstatus = unimplemented!();
match modelstatus {
    ModelStatus::Deleting => { /* ... */ },
    ModelStatus::InError => { /* ... */ },
    ModelStatus::Stopped => { /* ... */ },
    ModelStatus::StopRequested => { /* ... */ },
    ModelStatus::Submitted => { /* ... */ },
    ModelStatus::Trained => { /* ... */ },
    ModelStatus::Training => { /* ... */ },
    other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
    _ => { /* ... */ },
}

The above code demonstrates that when modelstatus represents NewFeature, the execution path will lead to the second last match arm, even though the enum does not contain a variant ModelStatus::NewFeature in the current version of SDK. The reason is that the variable other, created by the @ operator, is bound to ModelStatus::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 ModelStatus::NewFeature is defined. Specifically, when modelstatus represents NewFeature, the execution path will hit the second last match arm as before by virtue of calling as_str on ModelStatus::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.
§

Deleting

§

InError

§

Stopped

§

StopRequested

§

Submitted

§

Trained

§

Training

§

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 4933)
4932
4933
4934
    fn as_ref(&self) -> &str {
        self.as_str()
    }
More examples
Hide additional examples
src/json_ser.rs (line 1820)
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
pub fn serialize_structure_crate_model_document_classifier_filter(
    object: &mut aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::model::DocumentClassifierFilter,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
    if let Some(var_363) = &input.status {
        object.key("Status").string(var_363.as_str());
    }
    if let Some(var_364) = &input.document_classifier_name {
        object
            .key("DocumentClassifierName")
            .string(var_364.as_str());
    }
    if let Some(var_365) = &input.submit_time_before {
        object
            .key("SubmitTimeBefore")
            .date_time(var_365, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    if let Some(var_366) = &input.submit_time_after {
        object
            .key("SubmitTimeAfter")
            .date_time(var_366, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    Ok(())
}

pub fn serialize_structure_crate_model_dominant_language_detection_job_filter(
    object: &mut aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::model::DominantLanguageDetectionJobFilter,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
    if let Some(var_367) = &input.job_name {
        object.key("JobName").string(var_367.as_str());
    }
    if let Some(var_368) = &input.job_status {
        object.key("JobStatus").string(var_368.as_str());
    }
    if let Some(var_369) = &input.submit_time_before {
        object
            .key("SubmitTimeBefore")
            .date_time(var_369, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    if let Some(var_370) = &input.submit_time_after {
        object
            .key("SubmitTimeAfter")
            .date_time(var_370, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    Ok(())
}

pub fn serialize_structure_crate_model_endpoint_filter(
    object: &mut aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::model::EndpointFilter,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
    if let Some(var_371) = &input.model_arn {
        object.key("ModelArn").string(var_371.as_str());
    }
    if let Some(var_372) = &input.status {
        object.key("Status").string(var_372.as_str());
    }
    if let Some(var_373) = &input.creation_time_before {
        object
            .key("CreationTimeBefore")
            .date_time(var_373, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    if let Some(var_374) = &input.creation_time_after {
        object
            .key("CreationTimeAfter")
            .date_time(var_374, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    Ok(())
}

pub fn serialize_structure_crate_model_entities_detection_job_filter(
    object: &mut aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::model::EntitiesDetectionJobFilter,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
    if let Some(var_375) = &input.job_name {
        object.key("JobName").string(var_375.as_str());
    }
    if let Some(var_376) = &input.job_status {
        object.key("JobStatus").string(var_376.as_str());
    }
    if let Some(var_377) = &input.submit_time_before {
        object
            .key("SubmitTimeBefore")
            .date_time(var_377, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    if let Some(var_378) = &input.submit_time_after {
        object
            .key("SubmitTimeAfter")
            .date_time(var_378, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    Ok(())
}

pub fn serialize_structure_crate_model_entity_recognizer_filter(
    object: &mut aws_smithy_json::serialize::JsonObjectWriter,
    input: &crate::model::EntityRecognizerFilter,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
    if let Some(var_379) = &input.status {
        object.key("Status").string(var_379.as_str());
    }
    if let Some(var_380) = &input.recognizer_name {
        object.key("RecognizerName").string(var_380.as_str());
    }
    if let Some(var_381) = &input.submit_time_before {
        object
            .key("SubmitTimeBefore")
            .date_time(var_381, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    if let Some(var_382) = &input.submit_time_after {
        object
            .key("SubmitTimeAfter")
            .date_time(var_382, aws_smithy_types::date_time::Format::EpochSeconds)?;
    }
    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