Enum aws_sdk_comprehend::model::ModelStatus
source · #[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
UnknownVariantValueis 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
Deleting
InError
Stopped
StopRequested
Submitted
Trained
Training
Unknown(UnknownVariantValue)
Unknown contains new variants that have been added since this code was generated.
Implementations§
source§impl ModelStatus
impl ModelStatus
sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Returns the &str value of the enum member.
Examples found in repository?
More examples
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(())
}Trait Implementations§
source§impl AsRef<str> for ModelStatus
impl AsRef<str> for ModelStatus
source§impl Clone for ModelStatus
impl Clone for ModelStatus
source§fn clone(&self) -> ModelStatus
fn clone(&self) -> ModelStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ModelStatus
impl Debug for ModelStatus
source§impl From<&str> for ModelStatus
impl From<&str> for ModelStatus
source§impl FromStr for ModelStatus
impl FromStr for ModelStatus
source§impl Hash for ModelStatus
impl Hash for ModelStatus
source§impl Ord for ModelStatus
impl Ord for ModelStatus
source§fn cmp(&self, other: &ModelStatus) -> Ordering
fn cmp(&self, other: &ModelStatus) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq<ModelStatus> for ModelStatus
impl PartialEq<ModelStatus> for ModelStatus
source§fn eq(&self, other: &ModelStatus) -> bool
fn eq(&self, other: &ModelStatus) -> bool
source§impl PartialOrd<ModelStatus> for ModelStatus
impl PartialOrd<ModelStatus> for ModelStatus
source§fn partial_cmp(&self, other: &ModelStatus) -> Option<Ordering>
fn partial_cmp(&self, other: &ModelStatus) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self and other) and is used by the <=
operator. Read moreimpl Eq for ModelStatus
impl StructuralEq for ModelStatus
impl StructuralPartialEq for ModelStatus
Auto Trait Implementations§
impl RefUnwindSafe for ModelStatus
impl Send for ModelStatus
impl Sync for ModelStatus
impl Unpin for ModelStatus
impl UnwindSafe for ModelStatus
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key and return true if they are equal.