Enum aws_sdk_appmesh::model::ListenerTimeout
source · #[non_exhaustive]
pub enum ListenerTimeout {
Grpc(GrpcTimeout),
Http(HttpTimeout),
Http2(HttpTimeout),
Tcp(TcpTimeout),
Unknown,
}
Expand description
An object that represents timeouts for different protocols.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Grpc(GrpcTimeout)
An object that represents types of timeouts.
Http(HttpTimeout)
An object that represents types of timeouts.
Http2(HttpTimeout)
An object that represents types of timeouts.
Tcp(TcpTimeout)
An object that represents types of timeouts.
Unknown
The Unknown
variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
An unknown enum variant
Note: If you encounter this error, consider upgrading your SDK to the latest version.
The Unknown
variant represents cases where the server sent a value that wasn’t recognized
by the client. This can happen when the server adds new functionality, but the client has not been updated.
To investigate this, consider turning on debug logging to print the raw HTTP response.
Implementations§
source§impl ListenerTimeout
impl ListenerTimeout
sourcepub fn as_grpc(&self) -> Result<&GrpcTimeout, &Self>
pub fn as_grpc(&self) -> Result<&GrpcTimeout, &Self>
Tries to convert the enum instance into Grpc
, extracting the inner GrpcTimeout
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_http(&self) -> Result<&HttpTimeout, &Self>
pub fn as_http(&self) -> Result<&HttpTimeout, &Self>
Tries to convert the enum instance into Http
, extracting the inner HttpTimeout
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_http2(&self) -> Result<&HttpTimeout, &Self>
pub fn as_http2(&self) -> Result<&HttpTimeout, &Self>
Tries to convert the enum instance into Http2
, extracting the inner HttpTimeout
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn as_tcp(&self) -> Result<&TcpTimeout, &Self>
pub fn as_tcp(&self) -> Result<&TcpTimeout, &Self>
Tries to convert the enum instance into Tcp
, extracting the inner TcpTimeout
.
Returns Err(&Self)
if it can’t be converted.
sourcepub fn is_unknown(&self) -> bool
pub fn is_unknown(&self) -> bool
Returns true if the enum instance is the Unknown
variant.
Trait Implementations§
source§impl Clone for ListenerTimeout
impl Clone for ListenerTimeout
source§fn clone(&self) -> ListenerTimeout
fn clone(&self) -> ListenerTimeout
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for ListenerTimeout
impl Debug for ListenerTimeout
source§impl PartialEq<ListenerTimeout> for ListenerTimeout
impl PartialEq<ListenerTimeout> for ListenerTimeout
source§fn eq(&self, other: &ListenerTimeout) -> bool
fn eq(&self, other: &ListenerTimeout) -> bool
self
and other
values to be equal, and is used
by ==
.