Enum aws_sdk_config::model::Owner
source · #[non_exhaustive]
pub enum Owner {
Aws,
CustomLambda,
CustomPolicy,
Unknown(UnknownVariantValue),
}Expand description
When writing a match expression against Owner, 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 owner = unimplemented!();
match owner {
Owner::Aws => { /* ... */ },
Owner::CustomLambda => { /* ... */ },
Owner::CustomPolicy => { /* ... */ },
other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
_ => { /* ... */ },
}
The above code demonstrates that when owner represents
NewFeature, the execution path will lead to the second last match arm,
even though the enum does not contain a variant Owner::NewFeature
in the current version of SDK. The reason is that the variable other,
created by the @ operator, is bound to
Owner::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 Owner::NewFeature is defined.
Specifically, when owner represents NewFeature,
the execution path will hit the second last match arm as before by virtue of
calling as_str on Owner::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
Aws
CustomLambda
CustomPolicy
Unknown(UnknownVariantValue)
Unknown contains new variants that have been added since this code was generated.
Implementations§
source§impl Owner
impl Owner
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
2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765
pub fn serialize_structure_crate_model_source(
object: &mut aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::model::Source,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
if let Some(var_501) = &input.owner {
object.key("Owner").string(var_501.as_str());
}
if let Some(var_502) = &input.source_identifier {
object.key("SourceIdentifier").string(var_502.as_str());
}
if let Some(var_503) = &input.source_details {
let mut array_504 = object.key("SourceDetails").start_array();
for item_505 in var_503 {
{
#[allow(unused_mut)]
let mut object_506 = array_504.value().start_object();
crate::json_ser::serialize_structure_crate_model_source_detail(
&mut object_506,
item_505,
)?;
object_506.finish();
}
}
array_504.finish();
}
if let Some(var_507) = &input.custom_policy_details {
#[allow(unused_mut)]
let mut object_508 = object.key("CustomPolicyDetails").start_object();
crate::json_ser::serialize_structure_crate_model_custom_policy_details(
&mut object_508,
var_507,
)?;
object_508.finish();
}
Ok(())
}Trait Implementations§
source§impl Ord for Owner
impl Ord for Owner
source§impl PartialOrd<Owner> for Owner
impl PartialOrd<Owner> for Owner
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 Owner
impl StructuralEq for Owner
impl StructuralPartialEq for Owner
Auto Trait Implementations§
impl RefUnwindSafe for Owner
impl Send for Owner
impl Sync for Owner
impl Unpin for Owner
impl UnwindSafe for Owner
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.