Enum aws_sdk_lexmodelsv2::model::MergeStrategy
source · #[non_exhaustive]
pub enum MergeStrategy {
Append,
FailOnConflict,
Overwrite,
Unknown(UnknownVariantValue),
}Expand description
When writing a match expression against MergeStrategy, 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 mergestrategy = unimplemented!();
match mergestrategy {
MergeStrategy::Append => { /* ... */ },
MergeStrategy::FailOnConflict => { /* ... */ },
MergeStrategy::Overwrite => { /* ... */ },
other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
_ => { /* ... */ },
}
The above code demonstrates that when mergestrategy represents
NewFeature, the execution path will lead to the second last match arm,
even though the enum does not contain a variant MergeStrategy::NewFeature
in the current version of SDK. The reason is that the variable other,
created by the @ operator, is bound to
MergeStrategy::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 MergeStrategy::NewFeature is defined.
Specifically, when mergestrategy represents NewFeature,
the execution path will hit the second last match arm as before by virtue of
calling as_str on MergeStrategy::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
Append
FailOnConflict
Overwrite
Unknown(UnknownVariantValue)
Unknown contains new variants that have been added since this code was generated.
Implementations§
source§impl MergeStrategy
impl MergeStrategy
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
997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
pub fn serialize_structure_crate_input_start_import_input(
object: &mut aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::input::StartImportInput,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
if let Some(var_218) = &input.file_password {
object.key("filePassword").string(var_218.as_str());
}
if let Some(var_219) = &input.import_id {
object.key("importId").string(var_219.as_str());
}
if let Some(var_220) = &input.merge_strategy {
object.key("mergeStrategy").string(var_220.as_str());
}
if let Some(var_221) = &input.resource_specification {
#[allow(unused_mut)]
let mut object_222 = object.key("resourceSpecification").start_object();
crate::json_ser::serialize_structure_crate_model_import_resource_specification(
&mut object_222,
var_221,
)?;
object_222.finish();
}
Ok(())
}Trait Implementations§
source§impl AsRef<str> for MergeStrategy
impl AsRef<str> for MergeStrategy
source§impl Clone for MergeStrategy
impl Clone for MergeStrategy
source§fn clone(&self) -> MergeStrategy
fn clone(&self) -> MergeStrategy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for MergeStrategy
impl Debug for MergeStrategy
source§impl From<&str> for MergeStrategy
impl From<&str> for MergeStrategy
source§impl FromStr for MergeStrategy
impl FromStr for MergeStrategy
source§impl Hash for MergeStrategy
impl Hash for MergeStrategy
source§impl Ord for MergeStrategy
impl Ord for MergeStrategy
source§fn cmp(&self, other: &MergeStrategy) -> Ordering
fn cmp(&self, other: &MergeStrategy) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq<MergeStrategy> for MergeStrategy
impl PartialEq<MergeStrategy> for MergeStrategy
source§fn eq(&self, other: &MergeStrategy) -> bool
fn eq(&self, other: &MergeStrategy) -> bool
source§impl PartialOrd<MergeStrategy> for MergeStrategy
impl PartialOrd<MergeStrategy> for MergeStrategy
source§fn partial_cmp(&self, other: &MergeStrategy) -> Option<Ordering>
fn partial_cmp(&self, other: &MergeStrategy) -> 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 MergeStrategy
impl StructuralEq for MergeStrategy
impl StructuralPartialEq for MergeStrategy
Auto Trait Implementations§
impl RefUnwindSafe for MergeStrategy
impl Send for MergeStrategy
impl Sync for MergeStrategy
impl Unpin for MergeStrategy
impl UnwindSafe for MergeStrategy
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.