id
stringlengths
22
133
text
stringlengths
40
40.2k
arch
stringclasses
1 value
syntax
stringclasses
1 value
kind
stringclasses
4 values
repo
stringclasses
27 values
path
stringlengths
5
116
license
stringclasses
6 values
commit
stringlengths
40
40
source_host
stringclasses
1 value
category
stringclasses
16 values
source_url
stringlengths
85
196
line_start
int64
1
4.28k
line_end
int64
4
4.31k
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
pub type BoxFuture<T> = aws_smithy_async::future::BoxFuture<T, BoxError>; /// Type alias for futures that are returned from several traits since async trait functions are not stable yet (as of 2023-07-21). /// /// See [the Rust blog](https://blog.rust-lang.org/inside-rust/2023/05/03/stabilizing-async-fn-in-trait.html)...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
55aa7275a4a080ca6c3b74b77d5f86d37dbb7720
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/55aa7275a4a080ca6c3b74b77d5f86d37dbb7720/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
#[derive(Debug)] enum ErrorKind<E> { /// An error occurred within an interceptor. Interceptor { source: InterceptorError }, /// An error returned by a service. Operation { err: E }, /// An error that occurs when a request times out. Timeout { source: BoxError }, /// An error that occurs when...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
55aa7275a4a080ca6c3b74b77d5f86d37dbb7720
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/55aa7275a4a080ca6c3b74b77d5f86d37dbb7720/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
pub fn is_operation_error(&self) -> bool { matches!(self.kind, ErrorKind::Operation { .. }) } /// Return this orchestrator error as an operation error if possible. pub fn as_operation_error(&self) -> Option<&E> { match &self.kind { ErrorKind::Operation { err } => Some(err), ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
55aa7275a4a080ca6c3b74b77d5f86d37dbb7720
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/55aa7275a4a080ca6c3b74b77d5f86d37dbb7720/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
} } /// True if the underlying error is a response error. pub fn is_response_error(&self) -> bool { matches!(self.kind, ErrorKind::Response { .. }) } /// Create a connector error with the given source. pub fn connector(source: ConnectorError) -> Self { Self { kind: ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
55aa7275a4a080ca6c3b74b77d5f86d37dbb7720
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/55aa7275a4a080ca6c3b74b77d5f86d37dbb7720/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
Some(response) => SdkError::response_error(source, response), None => { SdkError::dispatch_failure(ConnectorError::other(source.into(), None)) } }, BeforeDeserialization | Deserialization | AfterDeseriali...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
55aa7275a4a080ca6c3b74b77d5f86d37dbb7720
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/55aa7275a4a080ca6c3b74b77d5f86d37dbb7720/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
}; OrchestratorError { kind } } } impl<E> StdError for OrchestratorError<E> where E: StdError + 'static, { fn source(&self) -> Option<&(dyn StdError + 'static)> { Some(match &self.kind { ErrorKind::Connector { source } => source as _, ErrorKind::Operation { err } => ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
55aa7275a4a080ca6c3b74b77d5f86d37dbb7720
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/55aa7275a4a080ca6c3b74b77d5f86d37dbb7720/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
300
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:8
return SdkError::dispatch_failure(*connector_error); } Err(e) => e, }; match response { Some(response) => SdkError::response_error(err, response), None => SdkError::dispatch_failure(ConnectorError::other(err, None)), } } impl<E> From<InterceptorError> for OrchestratorError<E...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
55aa7275a4a080ca6c3b74b77d5f86d37dbb7720
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/55aa7275a4a080ca6c3b74b77d5f86d37dbb7720/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
281
304
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ //! Client request orchestration. //! //! The orchestrator handles the full request/response lifecycle including: //! - Request serialization //! - Endpoint resolution //! - Identity resolution //! - Sig...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
38f7658917b57ddcdf7161b18769fc12ad2f24ba
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/38f7658917b57ddcdf7161b18769fc12ad2f24ba/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
/// more information on async functions in traits. pub type BoxFuture<T> = Pin<Box<dyn StdFuture<Output = Result<T, BoxError>> + Send>>; /// Type alias for futures that are returned from several traits since async trait functions are not stable yet (as of 2023-07-21). /// /// See [the Rust blog](https://blog.rust-lang...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
38f7658917b57ddcdf7161b18769fc12ad2f24ba
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/38f7658917b57ddcdf7161b18769fc12ad2f24ba/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
Timeout { source: BoxError }, /// An error that occurs when request dispatch fails. Connector { source: ConnectorError }, /// An error that occurs when a response can't be deserialized. Response { source: BoxError }, /// A general orchestrator error. Other { source: BoxError }, } /// Errors tha...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
38f7658917b57ddcdf7161b18769fc12ad2f24ba
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/38f7658917b57ddcdf7161b18769fc12ad2f24ba/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
ErrorKind::Operation { err } => Some(err), _ => None, } } /// Create an interceptor error with the given source. pub fn interceptor(source: InterceptorError) -> Self { Self { kind: ErrorKind::Interceptor { source }, } } /// True if the underlying err...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
38f7658917b57ddcdf7161b18769fc12ad2f24ba
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/38f7658917b57ddcdf7161b18769fc12ad2f24ba/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
/// Create a connector error with the given source. pub fn connector(source: ConnectorError) -> Self { Self { kind: ErrorKind::Connector { source }, } } /// True if the underlying error is a [`ConnectorError`]. pub fn is_connector_error(&self) -> bool { matches!(self...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
38f7658917b57ddcdf7161b18769fc12ad2f24ba
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/38f7658917b57ddcdf7161b18769fc12ad2f24ba/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
} } } ErrorKind::Operation { err } => { debug_assert!(phase.is_after_deserialization(), "operation errors are a result of successfully receiving and parsing a response from the server. Therefore, we must be in the 'After Deserialization' phase."); ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
38f7658917b57ddcdf7161b18769fc12ad2f24ba
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/38f7658917b57ddcdf7161b18769fc12ad2f24ba/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
254
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
impl<E> From<InterceptorError> for OrchestratorError<E> where E: Debug + std::error::Error + 'static, { fn from(err: InterceptorError) -> Self { Self::interceptor(err) } } impl From<Error> for OrchestratorError<Error> { fn from(err: Error) -> Self { Self::operation(err) } }
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
38f7658917b57ddcdf7161b18769fc12ad2f24ba
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/38f7658917b57ddcdf7161b18769fc12ad2f24ba/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
254
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ //! Client request orchestration. //! //! The orchestrator handles the full request/response lifecycle including: //! - Request serialization //! - Endpoint resolution //! - Identity resolution //! - Sig...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
ce28848a2f73a8ba0c4b526135983ce8ef19255e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/ce28848a2f73a8ba0c4b526135983ce8ef19255e/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
} } } ErrorKind::Operation { err } => { debug_assert!(phase.is_after_deserialization(), "operation errors are a result of successfully receiving and parsing a response from the server. Therefore, we must be in the 'After Deserialization' phase."); ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
ce28848a2f73a8ba0c4b526135983ce8ef19255e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/ce28848a2f73a8ba0c4b526135983ce8ef19255e/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
254
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
impl<E> From<InterceptorError> for OrchestratorError<E> where E: Debug + std::error::Error + 'static, { fn from(err: InterceptorError) -> Self { Self::interceptor(err) } } impl From<TypeErasedError> for OrchestratorError<TypeErasedError> { fn from(err: TypeErasedError) -> Self { Self::o...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
ce28848a2f73a8ba0c4b526135983ce8ef19255e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/ce28848a2f73a8ba0c4b526135983ce8ef19255e/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
254
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
/// more information on async functions in traits. pub type BoxFuture<T> = Pin<Box<dyn StdFuture<Output = Result<T, BoxError>> + Send>>; /// Type alias for futures that are returned from several traits since async trait functions are not stable yet (as of 2023-07-21). /// /// See [the Rust blog](https://blog.rust-lang...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
/// An error returned by a service. Operation { err: E }, /// An error that occurs when a request times out. Timeout { err: BoxError }, /// An error that occurs when request dispatch fails. Connector { err: ConnectorError }, /// An error that occurs when a response can't be deserialized. Res...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
pub fn connector(err: ConnectorError) -> Self { Self::Connector { err } } /// Convert the `OrchestratorError` into `Some` operation specific error if it is one. Otherwise, /// return `None`. pub fn as_operation_error(&self) -> Option<&E> { match self { Self::Operation { err ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
Self::Other { err } => { use Phase::*; match phase { BeforeSerialization | Serialization => SdkError::construction_failure(err), BeforeTransmit | Transmit => convert_dispatch_error(err, response), BeforeDeserialization | Deseria...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
213
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
fn from(err: TypeErasedError) -> Self { Self::operation(err) } } impl<E> From<aws_smithy_http::byte_stream::error::Error> for OrchestratorError<E> where E: Debug + std::error::Error + 'static, { fn from(err: aws_smithy_http::byte_stream::error::Error) -> Self { Self::other(err) } }
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/fa5105e87e62527c549dd0c0d27fec0ab0fe0aa9/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
213
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ use crate::box_error::BoxError; use crate::client::interceptors::context::{Error, Input, Output}; use aws_smithy_async::future::now_or_later::NowOrLater; use aws_smithy_http::body::SdkBody; use aws_smith...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
eb5d5753cf1c50253e1e392e0010fad9319433eb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/eb5d5753cf1c50253e1e392e0010fad9319433eb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
impl RequestSerializer for SharedRequestSerializer { fn serialize_input(&self, input: Input, cfg: &mut ConfigBag) -> Result<HttpRequest, BoxError> { self.0.serialize_input(input, cfg) } } impl Storable for SharedRequestSerializer { type Storer = StoreReplace<Self>; } pub trait ResponseDeserializer...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
eb5d5753cf1c50253e1e392e0010fad9319433eb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/eb5d5753cf1c50253e1e392e0010fad9319433eb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
self.0.deserialize_nonstreaming(response) } fn deserialize_streaming( &self, response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { self.0.deserialize_streaming(response) } } impl Storable for DynResponseDeserializer { type Storer = StoreReplac...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
eb5d5753cf1c50253e1e392e0010fad9319433eb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/eb5d5753cf1c50253e1e392e0010fad9319433eb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
pub fn new(endpoint_resolver: impl EndpointResolver + 'static) -> Self { Self(Arc::new(endpoint_resolver)) } } impl EndpointResolver for SharedEndpointResolver { fn resolve_endpoint(&self, params: &EndpointResolverParams) -> Future<Endpoint> { self.0.resolve_endpoint(params) } } /// Inform...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
eb5d5753cf1c50253e1e392e0010fad9319433eb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/eb5d5753cf1c50253e1e392e0010fad9319433eb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
156
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
self.0.deserialize_nonstreaming(response) } fn deserialize_streaming( &self, response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { self.0.deserialize_streaming(response) } } impl Storable for DynResponseDeserializer { type Storer = StoreReplac...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0c75242eb1a5ffaac25659e2419f1cbdff559d89
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0c75242eb1a5ffaac25659e2419f1cbdff559d89/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
pub fn new(endpoint_resolver: impl EndpointResolver + 'static) -> Self { Self(Box::new(endpoint_resolver)) } } impl EndpointResolver for DynEndpointResolver { fn resolve_endpoint(&self, params: &EndpointResolverParams) -> Future<Endpoint> { self.0.resolve_endpoint(params) } } impl Storable...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0c75242eb1a5ffaac25659e2419f1cbdff559d89
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0c75242eb1a5ffaac25659e2419f1cbdff559d89/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
160
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ use crate::box_error::BoxError; use crate::client::interceptors::context::{Error, Input, Output}; use aws_smithy_async::future::now_or_later::NowOrLater; use aws_smithy_http::body::SdkBody; use aws_smith...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
3295543612dada803b8ced9d8bc26acd7a2bd274
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/3295543612dada803b8ced9d8bc26acd7a2bd274/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
} impl RequestSerializer for SharedRequestSerializer { fn serialize_input(&self, input: Input, cfg: &mut ConfigBag) -> Result<HttpRequest, BoxError> { self.0.serialize_input(input, cfg) } } impl Storable for SharedRequestSerializer { type Storer = StoreReplace<Self>; } pub trait ResponseDeseriali...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
3295543612dada803b8ced9d8bc26acd7a2bd274
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/3295543612dada803b8ced9d8bc26acd7a2bd274/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
) -> Result<Output, OrchestratorError<Error>> { self.0.deserialize_nonstreaming(response) } fn deserialize_streaming( &self, response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { self.0.deserialize_streaming(response) } } impl Storable for...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
3295543612dada803b8ced9d8bc26acd7a2bd274
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/3295543612dada803b8ced9d8bc26acd7a2bd274/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
pub struct EndpointResolverParams(TypeErasedBox); impl EndpointResolverParams { pub fn new<T: fmt::Debug + Send + Sync + 'static>(params: T) -> Self { Self(TypedBox::new(params).erase()) } pub fn get<T: fmt::Debug + Send + Sync + 'static>(&self) -> Option<&T> { self.0.downcast_ref() } ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
3295543612dada803b8ced9d8bc26acd7a2bd274
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/3295543612dada803b8ced9d8bc26acd7a2bd274/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
/// /// This enum gets placed into the `ConfigBag` to change the orchestrator behavior. /// Immediately after serialization (before the `read_after_serialization` interceptor hook), /// if it was set to `Requested` in the config bag, it will be replaced back into the config bag as /// `Loaded` with the request body con...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
3295543612dada803b8ced9d8bc26acd7a2bd274
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/3295543612dada803b8ced9d8bc26acd7a2bd274/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
184
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
) -> Result<Output, OrchestratorError<Error>> { self.0.deserialize_nonstreaming(response) } fn deserialize_streaming( &self, response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { self.0.deserialize_streaming(response) } } impl Storable for...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
b66b835baddd64acfb07cfca37baebfceeb10253
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/b66b835baddd64acfb07cfca37baebfceeb10253/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
pub struct EndpointResolverParams(TypeErasedBox); impl EndpointResolverParams { pub fn new<T: fmt::Debug + Send + Sync + 'static>(params: T) -> Self { Self(TypedBox::new(params).erase()) } pub fn get<T: fmt::Debug + Send + Sync + 'static>(&self) -> Option<&T> { self.0.downcast_ref() } ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
b66b835baddd64acfb07cfca37baebfceeb10253
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/b66b835baddd64acfb07cfca37baebfceeb10253/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ use crate::box_error::BoxError; use crate::client::auth::{ AuthOptionResolver, AuthOptionResolverParams, DynAuthOptionResolver, HttpAuthSchemes, }; use crate::client::identity::IdentityResolvers; use...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
#[derive(Clone, Debug)] pub struct SharedRequestSerializer(Arc<dyn RequestSerializer>); impl SharedRequestSerializer { pub fn new(serializer: impl RequestSerializer + 'static) -> Self { Self(Arc::new(serializer)) } } impl RequestSerializer for SharedRequestSerializer { fn serialize_input(&self, in...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
Self(Box::new(serializer)) } } impl ResponseDeserializer for DynResponseDeserializer { fn deserialize_nonstreaming( &self, response: &HttpResponse, ) -> Result<Output, OrchestratorError<Error>> { self.0.deserialize_nonstreaming(response) } fn deserialize_streaming( ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
} } impl Storable for DynConnection { type Storer = StoreReplace<Self>; } #[derive(Debug)] pub struct EndpointResolverParams(TypeErasedBox); impl EndpointResolverParams { pub fn new<T: fmt::Debug + Send + Sync + 'static>(params: T) -> Self { Self(TypedBox::new(params).erase()) } pub fn get<T...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
} } impl Storable for DynEndpointResolver { type Storer = StoreReplace<Self>; } /// Informs the orchestrator on whether or not the request body needs to be loaded into memory before transmit. /// /// This enum gets placed into the `ConfigBag` to change the orchestrator behavior. /// Immediately after serializatio...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
fn store_put<T>(&mut self, value: T) where T: Storable<Storer = StoreReplace<T>>; } impl Settable for Layer { fn unset<T: Send + Sync + Clone + Debug + 'static>(&mut self) { Layer::unset::<T>(self); } fn store_put<T>(&mut self, value: T) where ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
} use internal::{Gettable, Settable}; pub trait ConfigBagAccessors { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams where Self: Gettable, { self.load::<AuthOptionResolverParams>() .expect("auth option resolver params must be set") } fn set_auth_option...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
300
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:8
.expect("endpoint resolver params must be set") } fn set_endpoint_resolver_params(&mut self, endpoint_resolver_params: EndpointResolverParams) where Self: Settable, { self.store_put::<EndpointResolverParams>(endpoint_resolver_params); } fn endpoint_resolver(&self) -> &dyn Endpo...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
281
340
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:9
fn connection(&self) -> &dyn Connection where Self: Gettable, { self.load::<DynConnection>().expect("missing connector") } fn set_connection(&mut self, connection: DynConnection) where Self: Settable, { self.store_put::<DynConnection>(connection); } fn h...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
321
380
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:10
self.store_put::<SharedRequestSerializer>(request_serializer); } fn response_deserializer(&self) -> &dyn ResponseDeserializer where Self: Gettable, { self.load::<DynResponseDeserializer>() .expect("missing response deserializer") } fn set_response_deserializer(&mut s...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
361
420
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:11
{ self.store_put::<DynRetryStrategy>(retry_strategy); } fn request_time(&self) -> Option<SharedTimeSource> where Self: Gettable, { self.load::<SharedTimeSource>().cloned() } fn set_request_time(&mut self, time_source: impl TimeSource + 'static) where Self: Se...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
401
453
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:12
fn set_loaded_request_body(&mut self, loaded_request_body: LoadedRequestBody) where Self: Settable, { self.store_put::<LoadedRequestBody>(loaded_request_body); } } const NOT_NEEDED: LoadedRequestBody = LoadedRequestBody::NotNeeded; impl ConfigBagAccessors for ConfigBag {} impl ConfigBagAcc...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
253a15511a6a5f2940e1c914cc11de3a55235259
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/253a15511a6a5f2940e1c914cc11de3a55235259/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
441
453
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ use crate::box_error::BoxError; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolvers; use crate::client::interceptors::...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
fn deserialize_streaming( &self, response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { let _ = response; None } fn deserialize_nonstreaming( &self, response: &HttpResponse, ) -> Result<Output, OrchestratorError<Error>>; } p...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
/// Informs the orchestrator on whether or not the request body needs to be loaded into memory before transmit. /// /// This enum gets placed into the `ConfigBag` to change the orchestrator behavior. /// Immediately after serialization (before the `read_after_serialization` interceptor hook), /// if it was set to `Requ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
impl Gettable for ConfigBag { fn config_bag(&self) -> &ConfigBag { self } } pub trait ConfigBagAccessors { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams where Self: Gettable, { self.config_bag() .get::<AuthOptionResolverParams>() ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
} fn endpoint_resolver_params(&self) -> &EndpointResolverParams where Self: Gettable, { self.config_bag() .get::<EndpointResolverParams>() .expect("endpoint resolver params must be set") } fn set_endpoint_resolver_params(&mut self, endpoint_resolver_params: ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
.get::<IdentityResolvers>() .expect("identity resolvers must be configured") } fn set_identity_resolvers(&mut self, identity_resolvers: IdentityResolvers) where Self: Settable, { self.put::<IdentityResolvers>(identity_resolvers); } fn connection(&self) -> &dyn Conne...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
self.put::<HttpAuthSchemes>(http_auth_schemes); } fn request_serializer(&self) -> Arc<dyn RequestSerializer> where Self: Gettable, { self.get::<Arc<dyn RequestSerializer>>() .expect("missing request serializer") .clone() } fn set_request_serializer(&mut s...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
300
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:8
.expect("retry classifiers must be set") } fn set_retry_classifiers(&mut self, retry_classifiers: RetryClassifiers) where Self: Settable, { self.put::<RetryClassifiers>(retry_classifiers); } fn retry_strategy(&self) -> Option<&dyn RetryStrategy> where Self: Gettable,...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
281
340
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:9
} fn set_sleep_impl(&mut self, async_sleep: Option<SharedAsyncSleep>) where Self: Settable, { if let Some(sleep_impl) = async_sleep { self.put::<SharedAsyncSleep>(sleep_impl); } else { self.layer().unset::<SharedAsyncSleep>(); } } fn loaded_re...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
7150a0800de9b7529f79521b351b8d7ea31fbfd0
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/7150a0800de9b7529f79521b351b8d7ea31fbfd0/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
321
350
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolvers; use crate::client::interceptors::context::{Error, Input, Output};...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
439cfbfe8cfcb933aea803c992f37f76575a48e4
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/439cfbfe8cfcb933aea803c992f37f76575a48e4/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolvers; use crate::client::interceptors::context::{Error, Input, Output};...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
&self, response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { let _ = response; None } fn deserialize_nonstreaming( &self, response: &HttpResponse, ) -> Result<Output, OrchestratorError<Error>>; } pub trait Connection: Send + Sync +...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
/// Informs the orchestrator on whether or not the request body needs to be loaded into memory before transmit. /// /// This enum gets placed into the `ConfigBag` to change the orchestrator behavior. /// Immediately after serialization (before the `read_after_serialization` interceptor hook), /// if it was set to `Requ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
fn set_connection(&mut self, connection: impl Connection + 'static); fn http_auth_schemes(&self) -> &HttpAuthSchemes; fn set_http_auth_schemes(&mut self, http_auth_schemes: HttpAuthSchemes); fn request_serializer(&self) -> Arc<dyn RequestSerializer>; fn set_request_serializer(&mut self, request_serial...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
auth_option_resolver_params: AuthOptionResolverParams, ) { self.put::<AuthOptionResolverParams>(auth_option_resolver_params); } fn auth_option_resolver(&self) -> &dyn AuthOptionResolver { &**self .get::<Box<dyn AuthOptionResolver>>() .expect("an auth option resolver ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
} fn set_identity_resolvers(&mut self, identity_resolvers: IdentityResolvers) { self.put::<IdentityResolvers>(identity_resolvers); } fn connection(&self) -> &dyn Connection { &**self .get::<Box<dyn Connection>>() .expect("missing connector") } fn set_connec...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
fn set_response_deserializer( &mut self, response_deserializer: impl ResponseDeserializer + 'static, ) { self.put::<Box<dyn ResponseDeserializer>>(Box::new(response_deserializer)); } fn retry_classifiers(&self) -> &RetryClassifiers { self.get::<RetryClassifiers>() ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
293
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:8
} else { self.unset::<SharedAsyncSleep>(); } } fn loaded_request_body(&self) -> &LoadedRequestBody { self.get::<LoadedRequestBody>().unwrap_or(&NOT_NEEDED) } fn set_loaded_request_body(&mut self, loaded_request_body: LoadedRequestBody) { self.put::<LoadedRequestBody...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
cefbd78e81aa57ad9c583f3a8927d505d5d901e5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/cefbd78e81aa57ad9c583f3a8927d505d5d901e5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
281
293
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /// Errors that can occur while running the orchestrator. mod error; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
2fcec800932fc3e127633fde6c64b3a5852d36e3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/2fcec800932fc3e127633fde6c64b3a5852d36e3/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /// Errors that can occur while running the orchestrator. mod error; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
06dc9de36c4c611fb925cf3d203e5cee26ce19bb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/06dc9de36c4c611fb925cf3d203e5cee26ce19bb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
/// Informs the orchestrator on whether or not the request body needs to be loaded into memory before transmit. /// /// This enum gets placed into the `ConfigBag` to change the orchestrator behavior. /// Immediately after serialization (before the `read_after_serialization` interceptor hook), /// if it was set to `Requ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
06dc9de36c4c611fb925cf3d203e5cee26ce19bb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/06dc9de36c4c611fb925cf3d203e5cee26ce19bb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
fn set_connection(&mut self, connection: impl Connection + 'static); fn http_auth_schemes(&self) -> &HttpAuthSchemes; fn set_http_auth_schemes(&mut self, http_auth_schemes: HttpAuthSchemes); fn request_serializer(&self) -> Arc<dyn RequestSerializer>; fn set_request_serializer(&mut self, request_serial...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
06dc9de36c4c611fb925cf3d203e5cee26ce19bb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/06dc9de36c4c611fb925cf3d203e5cee26ce19bb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
} fn set_identity_resolvers(&mut self, identity_resolvers: IdentityResolvers) { self.put::<IdentityResolvers>(identity_resolvers); } fn connection(&self) -> &dyn Connection { &**self .get::<Box<dyn Connection>>() .expect("missing connector") } fn set_connec...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
06dc9de36c4c611fb925cf3d203e5cee26ce19bb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/06dc9de36c4c611fb925cf3d203e5cee26ce19bb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
fn set_response_deserializer( &mut self, response_deserializer: impl ResponseDeserializer + 'static, ) { self.put::<Box<dyn ResponseDeserializer>>(Box::new(response_deserializer)); } fn retry_classifiers(&self) -> &RetryClassifiers { self.get::<RetryClassifiers>() ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
06dc9de36c4c611fb925cf3d203e5cee26ce19bb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/06dc9de36c4c611fb925cf3d203e5cee26ce19bb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
295
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:8
if let Some(sleep_impl) = sleep_impl { self.put::<Arc<dyn AsyncSleep>>(sleep_impl); } else { self.unset::<Arc<dyn AsyncSleep>>(); } } fn loaded_request_body(&self) -> &LoadedRequestBody { self.get::<LoadedRequestBody>().unwrap_or(&NOT_NEEDED) } fn set_lo...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
06dc9de36c4c611fb925cf3d203e5cee26ce19bb
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/06dc9de36c4c611fb925cf3d203e5cee26ce19bb/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
281
295
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /// Errors that can occur while running the orchestrator. mod error; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
a918b634997f952042157fcb45d7d8709c062e6f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/a918b634997f952042157fcb45d7d8709c062e6f/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /// Errors that can occur while running the orchestrator. mod error; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
&self, response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { let _ = response; None } fn deserialize_nonstreaming( &self, response: &HttpResponse, ) -> Result<Output, OrchestratorError<Error>>; } pub trait Connection: Send + Sync +...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
/// Time that the request is being made (so that time can be overridden in the [`ConfigBag`]). #[non_exhaustive] #[derive(Copy, Clone, Debug, Eq, PartialEq)] pub struct RequestTime(SystemTime); impl Default for RequestTime { fn default() -> Self { Self(SystemTime::now()) } } impl RequestTime { ///...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
Loaded(Bytes), } pub trait ConfigBagAccessors { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams; fn set_auth_option_resolver_params( &mut self, auth_option_resolver_params: AuthOptionResolverParams, ); fn auth_option_resolver(&self) -> &dyn AuthOptionResolver; fn...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
fn retry_strategy(&self) -> &dyn RetryStrategy; fn set_retry_strategy(&mut self, retry_strategy: impl RetryStrategy + 'static); fn request_time(&self) -> Option<RequestTime>; fn set_request_time(&mut self, request_time: RequestTime); fn sleep_impl(&self) -> Option<Arc<dyn AsyncSleep>>; fn set_slee...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
fn endpoint_resolver_params(&self) -> &EndpointResolverParams { self.get::<EndpointResolverParams>() .expect("endpoint resolver params must be set") } fn set_endpoint_resolver_params(&mut self, endpoint_resolver_params: EndpointResolverParams) { self.put::<EndpointResolverParams>(en...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
self.get::<HttpAuthSchemes>() .expect("auth schemes must be set") } fn set_http_auth_schemes(&mut self, http_auth_schemes: HttpAuthSchemes) { self.put::<HttpAuthSchemes>(http_auth_schemes); } fn request_serializer(&self) -> Arc<dyn RequestSerializer> { self.get::<Arc<dyn Re...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
300
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:8
fn retry_strategy(&self) -> &dyn RetryStrategy { &**self .get::<Box<dyn RetryStrategy>>() .expect("a retry strategy must be set") } fn set_retry_strategy(&mut self, retry_strategy: impl RetryStrategy + 'static) { self.put::<Box<dyn RetryStrategy>>(Box::new(retry_strategy...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d72d0378a6716e9a1cf5917d17e3c0f1a1867ddc/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
281
318
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /// Errors that can occur while running the orchestrator. mod error; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d579a1949f060dad9e9a4654881a914f525282ab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d579a1949f060dad9e9a4654881a914f525282ab/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
Loaded(Bytes), } pub trait ConfigBagAccessors { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams; fn set_auth_option_resolver_params( &mut self, auth_option_resolver_params: AuthOptionResolverParams, ); fn auth_option_resolver(&self) -> &dyn AuthOptionResolver; fn...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d579a1949f060dad9e9a4654881a914f525282ab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d579a1949f060dad9e9a4654881a914f525282ab/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
fn endpoint_resolver_params(&self) -> &EndpointResolverParams { self.get::<EndpointResolverParams>() .expect("endpoint resolver params must be set") } fn set_endpoint_resolver_params(&mut self, endpoint_resolver_params: EndpointResolverParams) { self.put::<EndpointResolverParams>(en...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d579a1949f060dad9e9a4654881a914f525282ab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d579a1949f060dad9e9a4654881a914f525282ab/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
self.get::<HttpAuthSchemes>() .expect("auth schemes must be set") } fn set_http_auth_schemes(&mut self, http_auth_schemes: HttpAuthSchemes) { self.put::<HttpAuthSchemes>(http_auth_schemes); } fn request_serializer(&self) -> &dyn RequestSerializer { &**self .get:...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d579a1949f060dad9e9a4654881a914f525282ab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d579a1949f060dad9e9a4654881a914f525282ab/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
300
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /// Errors that can occur while running the orchestrator. mod error; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
4aebe949912d3c1222e13524b11a6d253d453866
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/4aebe949912d3c1222e13524b11a6d253d453866/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { let _ = response; None } fn deserialize_nonstreaming( &self, response: &HttpResponse, ) -> Result<Output, OrchestratorError<Error>>; } pub trait Connection: Send + Sync + fmt::Debug { ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
4aebe949912d3c1222e13524b11a6d253d453866
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/4aebe949912d3c1222e13524b11a6d253d453866/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
#[non_exhaustive] #[derive(Copy, Clone, Debug, Eq, PartialEq)] pub struct RequestTime(SystemTime); impl Default for RequestTime { fn default() -> Self { Self(SystemTime::now()) } } impl RequestTime { /// Create a new [`RequestTime`]. pub fn new(time: SystemTime) -> Self { Self(time) ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
4aebe949912d3c1222e13524b11a6d253d453866
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/4aebe949912d3c1222e13524b11a6d253d453866/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
fn connection(&self) -> &dyn Connection; fn set_connection(&mut self, connection: impl Connection + 'static); fn http_auth_schemes(&self) -> &HttpAuthSchemes; fn set_http_auth_schemes(&mut self, http_auth_schemes: HttpAuthSchemes); fn request_serializer(&self) -> &dyn RequestSerializer; fn set_req...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
4aebe949912d3c1222e13524b11a6d253d453866
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/4aebe949912d3c1222e13524b11a6d253d453866/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
} fn auth_option_resolver(&self) -> &dyn AuthOptionResolver { &**self .get::<Box<dyn AuthOptionResolver>>() .expect("an auth option resolver must be set") } fn set_auth_option_resolver( &mut self, auth_option_resolver: impl AuthOptionResolver + 'static, ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
4aebe949912d3c1222e13524b11a6d253d453866
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/4aebe949912d3c1222e13524b11a6d253d453866/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
self.put::<IdentityResolvers>(identity_resolvers); } fn connection(&self) -> &dyn Connection { &**self .get::<Box<dyn Connection>>() .expect("missing connector") } fn set_connection(&mut self, connection: impl Connection + 'static) { self.put::<Box<dyn Connectio...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
4aebe949912d3c1222e13524b11a6d253d453866
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/4aebe949912d3c1222e13524b11a6d253d453866/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
response_deserializer: impl ResponseDeserializer + 'static, ) { self.put::<Box<dyn ResponseDeserializer>>(Box::new(response_deserializer)); } fn retry_classifiers(&self) -> &RetryClassifiers { self.get::<RetryClassifiers>() .expect("retry classifiers must be set") } fn ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
4aebe949912d3c1222e13524b11a6d253d453866
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/4aebe949912d3c1222e13524b11a6d253d453866/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
284
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ /// Errors that can occur while running the orchestrator. mod error; use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f76ccb3a8534c5a903b6927d925e2ea966e60bd5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f76ccb3a8534c5a903b6927d925e2ea966e60bd5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:2
response: &mut HttpResponse, ) -> Option<Result<Output, OrchestratorError<Error>>> { let _ = response; None } fn deserialize_nonstreaming( &self, response: &HttpResponse, ) -> Result<Output, OrchestratorError<Error>>; } pub trait Connection: Send + Sync + fmt::Debug { ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f76ccb3a8534c5a903b6927d925e2ea966e60bd5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f76ccb3a8534c5a903b6927d925e2ea966e60bd5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
request: &mut HttpRequest, ) -> Result<(), BoxError>; } /// Time that the request is being made (so that time can be overridden in the [`ConfigBag`]). #[non_exhaustive] #[derive(Copy, Clone, Debug, Eq, PartialEq)] pub struct RequestTime(SystemTime); impl Default for RequestTime { fn default() -> Self { ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f76ccb3a8534c5a903b6927d925e2ea966e60bd5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f76ccb3a8534c5a903b6927d925e2ea966e60bd5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
fn endpoint_resolver(&self) -> &dyn EndpointResolver; fn set_endpoint_resolver(&mut self, endpoint_resolver: impl EndpointResolver + 'static); fn identity_resolvers(&self) -> &IdentityResolvers; fn set_identity_resolvers(&mut self, identity_resolvers: IdentityResolvers); fn connection(&self) -> &dyn C...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f76ccb3a8534c5a903b6927d925e2ea966e60bd5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f76ccb3a8534c5a903b6927d925e2ea966e60bd5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
fn set_auth_option_resolver_params( &mut self, auth_option_resolver_params: AuthOptionResolverParams, ) { self.put::<AuthOptionResolverParams>(auth_option_resolver_params); } fn auth_option_resolver(&self) -> &dyn AuthOptionResolver { &**self .get::<Box<dyn AuthO...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f76ccb3a8534c5a903b6927d925e2ea966e60bd5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f76ccb3a8534c5a903b6927d925e2ea966e60bd5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
self.get::<IdentityResolvers>() .expect("identity resolvers must be configured") } fn set_identity_resolvers(&mut self, identity_resolvers: IdentityResolvers) { self.put::<IdentityResolvers>(identity_resolvers); } fn connection(&self) -> &dyn Connection { &**self ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f76ccb3a8534c5a903b6927d925e2ea966e60bd5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f76ccb3a8534c5a903b6927d925e2ea966e60bd5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
.expect("missing response deserializer") } fn set_response_deserializer( &mut self, response_deserializer: impl ResponseDeserializer + 'static, ) { self.put::<Box<dyn ResponseDeserializer>>(Box::new(response_deserializer)); } fn retry_classifiers(&self) -> &RetryClassifiers...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f76ccb3a8534c5a903b6927d925e2ea966e60bd5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f76ccb3a8534c5a903b6927d925e2ea966e60bd5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
289
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:1
/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolvers; use crate::client::interceptors::context::{Error, Input, Output};...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
01df6ee67fe8e710d5d0d4ba1217915f2a9f846e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/01df6ee67fe8e710d5d0d4ba1217915f2a9f846e/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
1
60