#[non_exhaustive]
pub enum VirtualGatewayPortProtocol {
Grpc,
Http,
Http2,
Unknown(UnknownVariantValue),
}
Expand description
When writing a match expression against VirtualGatewayPortProtocol
, 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 virtualgatewayportprotocol = unimplemented!();
match virtualgatewayportprotocol {
VirtualGatewayPortProtocol::Grpc => { /* ... */ },
VirtualGatewayPortProtocol::Http => { /* ... */ },
VirtualGatewayPortProtocol::Http2 => { /* ... */ },
other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
_ => { /* ... */ },
}
The above code demonstrates that when virtualgatewayportprotocol
represents
NewFeature
, the execution path will lead to the second last match arm,
even though the enum does not contain a variant VirtualGatewayPortProtocol::NewFeature
in the current version of SDK. The reason is that the variable other
,
created by the @
operator, is bound to
VirtualGatewayPortProtocol::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 VirtualGatewayPortProtocol::NewFeature
is defined.
Specifically, when virtualgatewayportprotocol
represents NewFeature
,
the execution path will hit the second last match arm as before by virtue of
calling as_str
on VirtualGatewayPortProtocol::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
Grpc
Http
Http2
Unknown(UnknownVariantValue)
Unknown
contains new variants that have been added since this code was generated.
Implementations§
source§impl VirtualGatewayPortProtocol
impl VirtualGatewayPortProtocol
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
1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599
pub fn serialize_structure_crate_model_virtual_gateway_health_check_policy(
object: &mut aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::model::VirtualGatewayHealthCheckPolicy,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
if let Some(var_300) = &input.timeout_millis {
object.key("timeoutMillis").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((*var_300).into()),
);
}
if let Some(var_301) = &input.interval_millis {
object.key("intervalMillis").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((*var_301).into()),
);
}
if let Some(var_302) = &input.protocol {
object.key("protocol").string(var_302.as_str());
}
if input.port != 0 {
object.key("port").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.port).into()),
);
}
if let Some(var_303) = &input.path {
object.key("path").string(var_303.as_str());
}
{
object.key("healthyThreshold").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.healthy_threshold).into()),
);
}
{
object.key("unhealthyThreshold").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.unhealthy_threshold).into()),
);
}
Ok(())
}
pub fn serialize_structure_crate_model_virtual_gateway_port_mapping(
object: &mut aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::model::VirtualGatewayPortMapping,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
{
object.key("port").number(
#[allow(clippy::useless_conversion)]
aws_smithy_types::Number::NegInt((input.port).into()),
);
}
if let Some(var_304) = &input.protocol {
object.key("protocol").string(var_304.as_str());
}
Ok(())
}
Trait Implementations§
source§impl AsRef<str> for VirtualGatewayPortProtocol
impl AsRef<str> for VirtualGatewayPortProtocol
source§impl Clone for VirtualGatewayPortProtocol
impl Clone for VirtualGatewayPortProtocol
source§fn clone(&self) -> VirtualGatewayPortProtocol
fn clone(&self) -> VirtualGatewayPortProtocol
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for VirtualGatewayPortProtocol
impl Debug for VirtualGatewayPortProtocol
source§impl From<&str> for VirtualGatewayPortProtocol
impl From<&str> for VirtualGatewayPortProtocol
source§impl FromStr for VirtualGatewayPortProtocol
impl FromStr for VirtualGatewayPortProtocol
source§impl Hash for VirtualGatewayPortProtocol
impl Hash for VirtualGatewayPortProtocol
source§impl Ord for VirtualGatewayPortProtocol
impl Ord for VirtualGatewayPortProtocol
source§fn cmp(&self, other: &VirtualGatewayPortProtocol) -> Ordering
fn cmp(&self, other: &VirtualGatewayPortProtocol) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq<VirtualGatewayPortProtocol> for VirtualGatewayPortProtocol
impl PartialEq<VirtualGatewayPortProtocol> for VirtualGatewayPortProtocol
source§fn eq(&self, other: &VirtualGatewayPortProtocol) -> bool
fn eq(&self, other: &VirtualGatewayPortProtocol) -> bool
source§impl PartialOrd<VirtualGatewayPortProtocol> for VirtualGatewayPortProtocol
impl PartialOrd<VirtualGatewayPortProtocol> for VirtualGatewayPortProtocol
source§fn partial_cmp(&self, other: &VirtualGatewayPortProtocol) -> Option<Ordering>
fn partial_cmp(&self, other: &VirtualGatewayPortProtocol) -> 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 VirtualGatewayPortProtocol
impl StructuralEq for VirtualGatewayPortProtocol
impl StructuralPartialEq for VirtualGatewayPortProtocol
Auto Trait Implementations§
impl RefUnwindSafe for VirtualGatewayPortProtocol
impl Send for VirtualGatewayPortProtocol
impl Sync for VirtualGatewayPortProtocol
impl Unpin for VirtualGatewayPortProtocol
impl UnwindSafe for VirtualGatewayPortProtocol
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.