[][src]Struct rusoto_appmesh::GrpcTimeout

pub struct GrpcTimeout {
    pub idle: Option<Duration>,
    pub per_request: Option<Duration>,
}

An object that represents types of timeouts.

Fields

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.

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.

Trait Implementations

impl Clone for GrpcTimeout[src]

impl Debug for GrpcTimeout[src]

impl Default for GrpcTimeout[src]

impl<'de> Deserialize<'de> for GrpcTimeout[src]

impl PartialEq<GrpcTimeout> for GrpcTimeout[src]

impl Serialize for GrpcTimeout[src]

impl StructuralPartialEq for GrpcTimeout[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.