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 trait Connection: Send + Sync + fmt::Debug { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse> { (**self).call(request) } } #[derive(Debug)] pub struct EndpointResolverPar...
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
41
100
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:3
Self(SystemTime::now()) } } impl RequestTime { /// Create a new [`RequestTime`]. pub fn new(time: SystemTime) -> Self { Self(time) } /// Returns the request time as a [`SystemTime`]. pub fn system_time(&self) -> SystemTime { self.0 } } pub trait ConfigBagAccessors { fn...
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
81
140
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
fn request_serializer(&self) -> &dyn RequestSerializer; fn set_request_serializer(&mut self, request_serializer: impl RequestSerializer + 'static); fn response_deserializer(&self) -> &dyn ResponseDeserializer; fn set_response_deserializer( &mut self, response_serializer: impl ResponseDeseri...
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
121
180
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:5
} fn set_auth_option_resolver( &mut self, auth_option_resolver: impl AuthOptionResolver + 'static, ) { self.put::<Box<dyn AuthOptionResolver>>(Box::new(auth_option_resolver)); } fn endpoint_resolver_params(&self) -> &EndpointResolverParams { self.get::<EndpointResolverP...
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
161
220
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:6
.expect("missing connector") } fn set_connection(&mut self, connection: impl Connection + 'static) { self.put::<Box<dyn Connection>>(Box::new(connection)); } fn http_auth_schemes(&self) -> &HttpAuthSchemes { self.get::<HttpAuthSchemes>() .expect("auth schemes must be set") ...
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
201
260
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:7
self.get::<RetryClassifiers>() .expect("retry classifiers must be set") } fn set_retry_classifiers(&mut self, retry_classifiers: RetryClassifiers) { self.put::<RetryClassifiers>(retry_classifiers); } fn retry_strategy(&self) -> &dyn RetryStrategy { &**self .get:...
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
241
278
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
3e62701b23a7f6ec9f37a94eb885390aa65bd0aa
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/3e62701b23a7f6ec9f37a94eb885390aa65bd0aa/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::{Input, OutputOrError};...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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_nonstreaming(&self, response: &HttpResponse) -> OutputOrError; } pub trait Connection: Send + Sync + fmt::Debug { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse> {...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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
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) } /// Returns the request time as a [`SystemTime`]. ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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) -> &dyn RequestSerializer; fn set_request_serializer(&mut self, request_serializer...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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.put::<AuthOptionResolverParams>(auth_option_resolver_params); } 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...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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_connection(&m...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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
&mut self, 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 s...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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
self.put::<RequestTime>(request_time); } fn sleep_impl(&self) -> Option<Arc<dyn AsyncSleep>> { self.get::<Arc<dyn AsyncSleep>>().cloned() } fn set_sleep_impl(&mut self, sleep_impl: Option<Arc<dyn AsyncSleep>>) { if let Some(sleep_impl) = sleep_impl { self.put::<Arc<dyn Asyn...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f95ca829cb69e87e24b3279d9af0e3dd84a4ad25
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f95ca829cb69e87e24b3279d9af0e3dd84a4ad25/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 */ use crate::client::auth::{AuthOptionResolver, AuthOptionResolverParams, HttpAuthSchemes}; use crate::client::identity::IdentityResolvers; use crate::client::interceptors::context::{Input, OutputOrError};...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/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
None } fn deserialize_nonstreaming(&self, response: &HttpResponse) -> OutputOrError; } pub trait Connection: Send + Sync + Debug { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFuture<HttpRespons...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/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(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) } /// Retur...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/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
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/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.put::<AuthOptionResolverParams>(auth_option_resolver_params); } 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( ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/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_connection(&m...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/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
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
296
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:8
fn set_request_time(&mut self, request_time: RequestTime) { self.put::<RequestTime>(request_time); } fn sleep_impl(&self) -> Option<Arc<dyn AsyncSleep>> { self.get::<Arc<dyn AsyncSleep>>().cloned() } fn set_sleep_impl(&mut self, sleep_impl: Option<Arc<dyn AsyncSleep>>) { if let...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
10c5e0417542f15413ce12556dadd6890a12aadf
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/10c5e0417542f15413ce12556dadd6890a12aadf/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
281
296
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::{Input, OutputOrError};...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
c55cc6f2a2662fecf6c502413c37478bf849584f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/c55cc6f2a2662fecf6c502413c37478bf849584f/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_nonstreaming(&self, response: &HttpResponse) -> OutputOrError; } pub trait Connection: Send + Sync + Debug { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse> { (**...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
c55cc6f2a2662fecf6c502413c37478bf849584f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/c55cc6f2a2662fecf6c502413c37478bf849584f/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
impl Default for RequestTime { fn default() -> Self { Self(SystemTime::now()) } } impl RequestTime { /// Create a new [`RequestTime`]. pub fn new(time: SystemTime) -> Self { Self(time) } /// Returns the request time as a [`SystemTime`]. pub fn system_time(&self) -> SystemTi...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
c55cc6f2a2662fecf6c502413c37478bf849584f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/c55cc6f2a2662fecf6c502413c37478bf849584f/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 http_auth_schemes(&self) -> &HttpAuthSchemes; fn set_http_auth_schemes(&mut self, http_auth_schemes: HttpAuthSchemes); fn request_serializer(&self) -> &dyn RequestSerializer; fn set_request_serializer(&mut self, request_serializer: impl RequestSerializer + 'static); fn response_deserializer(&self) ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
c55cc6f2a2662fecf6c502413c37478bf849584f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/c55cc6f2a2662fecf6c502413c37478bf849584f/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 .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, ) { self.put::<Box<dyn AuthOptionResolver>>(Box::new(auth_option_re...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
c55cc6f2a2662fecf6c502413c37478bf849584f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/c55cc6f2a2662fecf6c502413c37478bf849584f/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 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 Connection>>(Box::new(connection)); } fn http_auth_schemes(&se...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
c55cc6f2a2662fecf6c502413c37478bf849584f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/c55cc6f2a2662fecf6c502413c37478bf849584f/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 retry_classifiers(&self) -> &RetryClassifiers { self.get::<RetryClassifiers>() .expect("retry classifiers must be set") } fn set_retry_classifiers(&mut self, retry_classifiers: RetryClassifiers) { self.put::<RetryClassifiers>(retry_classifiers); } fn retry_strateg...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
c55cc6f2a2662fecf6c502413c37478bf849584f
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/c55cc6f2a2662fecf6c502413c37478bf849584f/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
241
279
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 super::identity::{IdentityResolver, IdentityResolvers}; use crate::client::identity::Identity; use crate::client::interceptors::context::{Input, OutputOrError}; use crate::client::retries::RetryClass...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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
let _ = response; None } fn deserialize_nonstreaming(&self, response: &HttpResponse) -> OutputOrError; } pub trait Connection: Send + Sync + Debug { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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
params: &AuthOptionResolverParams, ) -> Result<Cow<'a, [HttpAuthOption]>, BoxError> { (**self).resolve_auth_options(params) } } #[derive(Clone, Debug)] pub struct HttpAuthOption { scheme_id: &'static str, properties: Arc<PropertyBag>, } impl HttpAuthOption { pub fn new(scheme_id: &'static ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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
Default::default() } pub fn scheme(&self, name: &'static str) -> Option<&dyn HttpAuthScheme> { self.inner .schemes .iter() .find(|scheme| scheme.0 == name) .map(|scheme| &*scheme.1) } } pub trait HttpAuthScheme: Send + Sync + Debug { fn scheme_id...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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(TypedBox::new(params).erase()) } pub fn get<T: 'static>(&self) -> Option<&T> { self.0.downcast_ref() } } pub trait EndpointResolver: Send + Sync + Debug { fn resolve_and_apply_endpoint( &self, params: &EndpointResolverParams, endpoint_prefix: Option<&EndpointPrefix...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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
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 set_auth_option_r...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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 trace_probe(&self) -> &dyn TraceProbe; fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static); fn request_time(&self) -> Option<RequestTime>; fn set_request_time(&mut self, request_time: RequestTime); } impl ConfigBagAccessors for ConfigBag { fn auth_option_resolver_params(&self) -> ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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 endpoint_resolver(&self) -> &dyn EndpointResolver { &**self .get::<Box<dyn EndpointResolver>>() .expect("an endpoint resolver must be set") } fn set_endpoint_resolver(&mut self, endpoint_resolver: impl EndpointResolver + 'static) { self.put::<Box<dyn EndpointRe...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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 request_serializer(&self) -> &dyn RequestSerializer { &**self .get::<Box<dyn RequestSerializer>>() .expect("missing request serializer") } fn set_request_serializer(&mut self, request_serializer: impl RequestSerializer + 'static) { self.put::<Box<dyn RequestSerializer...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/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
} fn trace_probe(&self) -> &dyn TraceProbe { &**self .get::<Box<dyn TraceProbe>>() .expect("missing trace probe") } fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static) { self.put::<Box<dyn TraceProbe>>(Box::new(trace_probe)); } fn request_...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
361
412
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:11
self } pub fn build(self) -> HttpAuthSchemes { HttpAuthSchemes { inner: Arc::new(HttpAuthSchemesInner { schemes: self.schemes, }), } } } }
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
591369a128c887739a4c5475db20904687de1fab
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/591369a128c887739a4c5475db20904687de1fab/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
401
412
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 super::identity::{IdentityResolver, IdentityResolvers}; use crate::client::identity::Identity; use crate::client::interceptors::context::{Input, OutputOrError}; use crate::client::interceptors::Inter...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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
None } fn deserialize_nonstreaming(&self, response: &HttpResponse) -> OutputOrError; } pub trait Connection: Send + Sync + Debug { fn call(&self, request: HttpRequest) -> BoxFuture<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFuture<HttpRespons...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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
fn resolve_auth_options<'a>( &'a self, params: &AuthOptionResolverParams, ) -> Result<Cow<'a, [HttpAuthOption]>, BoxError>; } impl AuthOptionResolver for Box<dyn AuthOptionResolver> { fn resolve_auth_options<'a>( &'a self, params: &AuthOptionResolverParams, ) -> Result<Cow<'...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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
schemes: Vec<(&'static str, Box<dyn HttpAuthScheme>)>, } #[derive(Debug)] pub struct HttpAuthSchemes { inner: Arc<HttpAuthSchemesInner>, } impl HttpAuthSchemes { pub fn builder() -> builders::HttpAuthSchemesBuilder { Default::default() } pub fn scheme(&self, name: &'static str) -> Option<&dyn ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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
signing_properties: &PropertyBag, ) -> Result<(), BoxError>; } #[derive(Debug)] pub struct EndpointResolverParams(TypeErasedBox); impl EndpointResolverParams { pub fn new<T: Any + Send + Sync + 'static>(params: T) -> Self { Self(TypedBox::new(params).erase()) } pub fn get<T: 'static>(&self) -...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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(time) } /// Returns the request time as a [`SystemTime`]. pub fn system_time(&self) -> SystemTime { self.0 } } pub trait ConfigBagAccessors { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams; fn set_auth_option_resolver_params( &mut self, auth_opt...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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_serializer: impl ResponseDeserializer + 'static, ); fn retry_strategy(&self) -> &dyn RetryStrategy; fn set_retry_strategy(&mut self, retry_strategy: impl RetryStrategy + 'static); fn trace_probe(&self) -> &dyn TraceProbe; fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'stati...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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
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 retry_strategy(&self) -> &dyn RetryStrategy { &**self .get::<Box<dy...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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_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
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/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 .get::<Box<dyn TraceProbe>>() .expect("missing trace probe") } fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static) { self.put::<Box<dyn TraceProbe>>(Box::new(trace_probe)); } fn request_time(&self) -> Option<RequestTime> { self.get::<Re...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
f72e6e95400f096fd0e1d3307ffc81ff5fed886e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/f72e6e95400f096fd0e1d3307ffc81ff5fed886e/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
361
409
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::identity::Identity; use crate::client::interceptors::context::{Input, OutputOrError}; use crate::client::interceptors::InterceptorContext; use crate::config_bag::ConfigBag; use crate::...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
} pub trait Connection: Send + Sync + Debug { fn call(&self, request: HttpRequest) -> BoxFallibleFut<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFallibleFut<HttpResponse> { (**self).call(request) } } pub trait RetryStrategy: Send + Sync + ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
} impl AuthOptionResolver for Box<dyn AuthOptionResolver> { fn resolve_auth_options<'a>( &'a self, params: &AuthOptionResolverParams, ) -> Result<Cow<'a, [HttpAuthOption]>, BoxError> { (**self).resolve_auth_options(params) } } #[derive(Clone, Debug)] pub struct HttpAuthOption { ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
identity_resolvers: Vec<(&'static str, Box<dyn IdentityResolver>)>, } impl IdentityResolvers { pub fn builder() -> builders::IdentityResolversBuilder { builders::IdentityResolversBuilder::new() } pub fn identity_resolver(&self, identity_type: &'static str) -> Option<&dyn IdentityResolver> { ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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 scheme_id(&self) -> &'static str; fn identity_resolver<'a>( &self, identity_resolvers: &'a IdentityResolvers, ) -> Option<&'a dyn IdentityResolver>; fn request_signer(&self) -> &dyn HttpRequestSigner; } pub trait HttpRequestSigner: Send + Sync + Debug { /// Return a signed version ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
request: &mut HttpRequest, ) -> Result<(), BoxError>; } 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_resolve...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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 trace_probe(&self) -> &dyn TraceProbe; fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static); } impl ConfigBagAccessors for ConfigBag { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams { self.get::<AuthOptionResolverParams>() .expect("auth option resolve...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
.get::<Box<dyn Connection>>() .expect("missing connector") } fn set_connection(&mut self, connection: impl Connection + 'static) { self.put::<Box<dyn Connection>>(Box::new(connection)); } fn request_serializer(&self) -> &dyn RequestSerializer { &**self .get::<Bo...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
} pub mod builders { use super::*; #[derive(Debug, Default)] pub struct IdentityResolversBuilder { identity_resolvers: Vec<(&'static str, Box<dyn IdentityResolver>)>, } impl IdentityResolversBuilder { pub fn new() -> Self { Default::default() } pub fn ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/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
} pub fn auth_scheme( mut self, name: &'static str, auth_scheme: impl HttpAuthScheme + 'static, ) -> Self { self.schemes.push((name, Box::new(auth_scheme) as _)); self } pub fn build(self) -> HttpAuthSchemes { Http...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
11bc942eefd33d3d1a41f5fee59f7add2700275c
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/11bc942eefd33d3d1a41f5fee59f7add2700275c/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
401
420
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::identity::Identity; use crate::client::interceptors::context::{Input, OutputOrError}; use crate::client::interceptors::InterceptorContext; use crate::config_bag::ConfigBag; use crate::...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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
pub trait Connection: Send + Sync + Debug { fn call(&self, request: HttpRequest) -> BoxFallibleFut<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFallibleFut<HttpResponse> { (**self).call(request) } } pub trait RetryStrategy: Send + Sync + Deb...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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
impl AuthOptionResolver for Box<dyn AuthOptionResolver> { fn resolve_auth_options<'a>( &'a self, params: &AuthOptionResolverParams, ) -> Result<Cow<'a, [HttpAuthOption]>, BoxError> { (**self).resolve_auth_options(params) } } #[derive(Clone, Debug)] pub struct HttpAuthOption { sc...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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 IdentityResolvers { pub fn builder() -> builders::IdentityResolversBuilder { builders::IdentityResolversBuilder::new() } pub fn identity_resolver(&self, identity_type: &'static str) -> Option<&dyn IdentityResolver> { self.identity_resolvers .iter() .find(|res...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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 identity_resolver<'a>( &self, identity_resolvers: &'a IdentityResolvers, ) -> Option<&'a dyn IdentityResolver>; fn request_signer(&self) -> &dyn HttpRequestSigner; } pub trait HttpRequestSigner: Send + Sync + Debug { /// Return a signed version of the given request using the given ident...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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 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
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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_auth_option_resolver( &mut self, auth_option_resolver: impl AuthOptionResolver + 'static, ) { self.put::<Box<dyn AuthOptionResolver>>(Box::new(auth_option_resolver)); } fn http_auth_schemes(&self) -> &HttpAuthSchemes { self.get::<HttpAuthSchemes>() ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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("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 .get::<Box<dyn Connection>>() ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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 trace_probe(&self) -> &dyn TraceProbe { &**self .get::<Box<dyn TraceProbe>>() .expect("missing trace probe") } fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static) { self.put::<Box<dyn TraceProbe>>(Box::new(trace_probe)); } } pub mod builders { ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/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
#[derive(Debug, Default)] pub struct HttpAuthSchemesBuilder { schemes: Vec<(&'static str, Box<dyn HttpAuthScheme>)>, } impl HttpAuthSchemesBuilder { pub fn new() -> Self { Default::default() } pub fn auth_scheme( mut self, name: &'static ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
d967d53be7a40fa4904baa792ad5a8abde4e6038
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/d967d53be7a40fa4904baa792ad5a8abde4e6038/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
361
389
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::identity::Identity; use crate::client::interceptors::context::{Input, OutputOrError}; use crate::client::interceptors::InterceptorContext; use crate::config_bag::ConfigBag; use crate::...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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
pub trait Connection: Send + Sync + Debug { fn call(&self, request: HttpRequest) -> BoxFallibleFut<HttpResponse>; } impl Connection for Box<dyn Connection> { fn call(&self, request: HttpRequest) -> BoxFallibleFut<HttpResponse> { (**self).call(request) } } pub trait RetryStrategy: Send + Sync + Deb...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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
impl AuthOptionResolver for Box<dyn AuthOptionResolver> { fn resolve_auth_options( &self, params: &AuthOptionResolverParams, ) -> Result<Vec<HttpAuthOption>, BoxError> { (**self).resolve_auth_options(params) } } #[derive(Clone, Debug)] pub struct HttpAuthOption { scheme_id: &'st...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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 IdentityResolvers { pub fn builder() -> builders::IdentityResolversBuilder { builders::IdentityResolversBuilder::new() } pub fn identity_resolver(&self, identity_type: &'static str) -> Option<&dyn IdentityResolver> { self.identity_resolvers .iter() .find(|resolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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 identity_resolver<'a>( &self, identity_resolvers: &'a IdentityResolvers, ) -> Option<&'a dyn IdentityResolver>; fn request_signer(&self) -> &dyn HttpRequestSigner; } pub trait HttpRequestSigner: Send + Sync + Debug { /// Return a signed version of the given request using the given ident...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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 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
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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_auth_option_resolver( &mut self, auth_option_resolver: impl AuthOptionResolver + 'static, ) { self.put::<Box<dyn AuthOptionResolver>>(Box::new(auth_option_resolver)); } fn http_auth_schemes(&self) -> &HttpAuthSchemes { self.get::<HttpAuthSchemes>() .expect...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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 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
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/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
&**self .get::<Box<dyn TraceProbe>>() .expect("missing trace probe") } fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static) { self.put::<Box<dyn TraceProbe>>(Box::new(trace_probe)); } } pub mod builders { use super::*; #[derive(Debug, Default)] ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
0ceba495fdf6b0494e80f432b2c167104b58dbb3
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/0ceba495fdf6b0494e80f432b2c167104b58dbb3/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
321
380
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:4
impl IdentityResolvers { pub fn builder() -> builders::IdentityResolversBuilder { builders::IdentityResolversBuilder::new() } pub fn identity_resolver(&self, identity_type: &'static str) -> Option<&dyn IdentityResolver> { self.identity_resolvers .iter() .find(|resolv...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
ab00f9b0e88c9cf16c186fb754aa64433a4ec181
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/ab00f9b0e88c9cf16c186fb754aa64433a4ec181/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 identity_resolver<'a>( &self, identity_resolvers: &'a IdentityResolvers, ) -> Option<&'a dyn IdentityResolver>; fn request_signer(&self) -> &dyn HttpRequestSigner; } pub trait HttpRequestSigner: Send + Sync + Debug { /// Return a signed version of the given request using the given ident...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
ab00f9b0e88c9cf16c186fb754aa64433a4ec181
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/ab00f9b0e88c9cf16c186fb754aa64433a4ec181/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
161
220
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::identity::Identity; use crate::client::interceptors::context::{Input, OutputOrError}; use crate::client::interceptors::InterceptorContext; use crate::config_bag::ConfigBag; use crate::...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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
pub trait Connection: Send + Sync + Debug { fn call(&self, request: &mut HttpRequest, cfg: &ConfigBag) -> BoxFallibleFut<HttpResponse>; } pub trait RetryStrategy: Send + Sync + Debug { fn should_attempt_initial_request(&self, cfg: &ConfigBag) -> Result<(), BoxError>; fn should_attempt_retry( &self...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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
impl HttpAuthOption { pub fn new(scheme_id: &'static str, properties: Arc<PropertyBag>) -> Self { Self { scheme_id, properties, } } pub fn scheme_id(&self) -> &'static str { self.scheme_id } pub fn properties(&self) -> &PropertyBag { &self.pr...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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
struct HttpAuthSchemesInner { schemes: Vec<(&'static str, Box<dyn HttpAuthScheme>)>, } #[derive(Debug)] pub struct HttpAuthSchemes { inner: Arc<HttpAuthSchemesInner>, } impl HttpAuthSchemes { pub fn builder() -> builders::HttpAuthSchemesBuilder { Default::default() } pub fn scheme(&self, n...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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
} pub trait EndpointResolver: Send + Sync + Debug { fn resolve_and_apply_endpoint(&self, request: &mut HttpRequest) -> Result<(), BoxError>; } pub trait ConfigBagAccessors { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams; fn set_auth_option_resolver_params( &mut self, a...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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 trace_probe(&self) -> &dyn TraceProbe; fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static); } impl ConfigBagAccessors for ConfigBag { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams { self.get::<AuthOptionResolverParams>() .expect("auth option resolve...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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::<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)); } fn endpoint_resolver(&self) -> &dyn Endpoi...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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
.get::<Box<dyn RequestSerializer>>() .expect("missing request serializer") } fn set_request_serializer(&mut self, request_serializer: impl RequestSerializer + 'static) { self.put::<Box<dyn RequestSerializer>>(Box::new(request_serializer)); } fn response_deserializer(&self) -> &dyn ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/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
impl IdentityResolversBuilder { pub fn new() -> Self { Default::default() } pub fn identity_resolver( mut self, name: &'static str, resolver: impl IdentityResolver + 'static, ) -> Self { self.identity_resolvers ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
321
370
awslabs/aws-sdk-rust:sdk/aws-smithy-runtime-api/src/client/orchestrator.rs:10
pub fn build(self) -> HttpAuthSchemes { HttpAuthSchemes { inner: Arc::new(HttpAuthSchemesInner { schemes: self.schemes, }), } } } }
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
efe787ce124366ed3018e3792580410ec5dd65b5
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/efe787ce124366ed3018e3792580410ec5dd65b5/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
361
370
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::identity::Identity; use crate::client::interceptors::context::{Input, OutputOrError}; use crate::client::interceptors::InterceptorContext; use crate::config_bag::ConfigBag; use crate::...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
859d18e93f161db478e19f9db7e21ba30092426e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/859d18e93f161db478e19f9db7e21ba30092426e/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
struct HttpAuthSchemesInner { schemes: Vec<(&'static str, Box<dyn HttpAuthScheme>)>, } #[derive(Debug)] pub struct HttpAuthSchemes { inner: Arc<HttpAuthSchemesInner>, } impl HttpAuthSchemes { pub fn builder() -> builders::HttpAuthSchemesBuilder { Default::default() } pub fn scheme(&self, n...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
859d18e93f161db478e19f9db7e21ba30092426e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/859d18e93f161db478e19f9db7e21ba30092426e/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
} pub trait EndpointResolver: Send + Sync + Debug { fn resolve_and_apply_endpoint( &self, request: &mut HttpRequest, cfg: &ConfigBag, ) -> Result<(), BoxError>; } pub trait ConfigBagAccessors { fn auth_option_resolver_params(&self) -> &AuthOptionResolverParams; fn set_auth_opti...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
859d18e93f161db478e19f9db7e21ba30092426e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/859d18e93f161db478e19f9db7e21ba30092426e/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 retry_strategy(&self) -> &dyn RetryStrategy; fn set_retry_strategy(&mut self, retry_strategy: impl RetryStrategy + 'static); fn trace_probe(&self) -> &dyn TraceProbe; fn set_trace_probe(&mut self, trace_probe: impl TraceProbe + 'static); } impl ConfigBagAccessors for ConfigBag { fn auth_option_reso...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
859d18e93f161db478e19f9db7e21ba30092426e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/859d18e93f161db478e19f9db7e21ba30092426e/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 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) { ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
859d18e93f161db478e19f9db7e21ba30092426e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/859d18e93f161db478e19f9db7e21ba30092426e/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 request_serializer(&self) -> &dyn RequestSerializer { &**self .get::<Box<dyn RequestSerializer>>() .expect("missing request serializer") } fn set_request_serializer(&mut self, request_serializer: impl RequestSerializer + 'static) { self.put::<Box<dyn RequestSer...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
859d18e93f161db478e19f9db7e21ba30092426e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/859d18e93f161db478e19f9db7e21ba30092426e/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
pub struct IdentityResolversBuilder { identity_resolvers: Vec<(&'static str, Box<dyn IdentityResolver>)>, } impl IdentityResolversBuilder { pub fn new() -> Self { Default::default() } pub fn identity_resolver( mut self, name: &'static str, ...
rust
rust
rust-source
awslabs/aws-sdk-rust
sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
Apache-2.0
859d18e93f161db478e19f9db7e21ba30092426e
github
sdk
https://github.com/awslabs/aws-sdk-rust/blob/859d18e93f161db478e19f9db7e21ba30092426e/sdk/aws-smithy-runtime-api/src/client/orchestrator.rs
321
374