Struct aws_sdk_appmesh::types::GrpcTimeout
source · #[non_exhaustive]pub struct GrpcTimeout {
pub per_request: Option<Duration>,
pub idle: Option<Duration>,
}
Expand description
An object that represents types of timeouts.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.per_request: Option<Duration>
An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.
idle: Option<Duration>
An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
Implementations§
source§impl GrpcTimeout
impl GrpcTimeout
sourcepub fn per_request(&self) -> Option<&Duration>
pub fn per_request(&self) -> Option<&Duration>
An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.
source§impl GrpcTimeout
impl GrpcTimeout
sourcepub fn builder() -> GrpcTimeoutBuilder
pub fn builder() -> GrpcTimeoutBuilder
Creates a new builder-style object to manufacture GrpcTimeout
.
Trait Implementations§
source§impl Clone for GrpcTimeout
impl Clone for GrpcTimeout
source§fn clone(&self) -> GrpcTimeout
fn clone(&self) -> GrpcTimeout
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GrpcTimeout
impl Debug for GrpcTimeout
source§impl PartialEq for GrpcTimeout
impl PartialEq for GrpcTimeout
source§fn eq(&self, other: &GrpcTimeout) -> bool
fn eq(&self, other: &GrpcTimeout) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GrpcTimeout
Auto Trait Implementations§
impl Freeze for GrpcTimeout
impl RefUnwindSafe for GrpcTimeout
impl Send for GrpcTimeout
impl Sync for GrpcTimeout
impl Unpin for GrpcTimeout
impl UnwindSafe for GrpcTimeout
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more