cloud_sdk_reqwest/blocking/
mod.rs1mod basic_client;
4mod basic_config;
5#[cfg(test)]
6mod body;
7mod client;
8mod config;
9mod raw;
10
11pub use crate::shared::{
12 AuthenticatedTransportFailure, BasicCredential, BasicCredentialError, BasicCredentialScope,
13 BasicCredentialScopeError, BasicPassword, BasicPasswordError, BasicUsername,
14 BasicUsernameError, BearerCredential, BearerCredentialScope, BearerCredentialScopeError,
15 BearerCredentialSnapshot, BearerRefreshHandoff, BearerToken, BearerTokenError, BuildError,
16 CredentialStateError, CredentialUpdateError, CustomEndpointAcknowledgement, EndpointError,
17 HttpsEndpoint, MAX_BASIC_AUTHORIZATION_BYTES, MAX_BASIC_PASSWORD_BYTES,
18 MAX_BASIC_USERNAME_BYTES, MAX_BEARER_TOKEN_BYTES, MAX_CONFIGURED_ENDPOINT_BYTES,
19 MAX_RAW_REQUEST_BODY_BYTES, MAX_TIMEOUT_SECONDS, MAX_UPSTREAM_HTTP1_HEAD_BYTES,
20 MAX_UPSTREAM_HTTP1_HEADERS, RawHttpError, RawTransportFailure, RequestTimeouts, TimeoutError,
21 TokenRefreshError, TokenRotationError, TransportError, UserAgent, UserAgentError,
22};
23pub use basic_client::BlockingBasicClient;
24pub use basic_config::BlockingBasicClientBuilder;
25pub use client::BlockingClient;
26#[cfg(feature = "blocking-rustls-fips")]
27pub use config::FipsTlsPolicy;
28pub use config::{BlockingClientBuilder, RawBlockingClientBuilder};
29pub use raw::RawBlockingClient;
30
31#[cfg(test)]
32mod tests;
33#[cfg(all(
34 test,
35 feature = "blocking-rustls-webpki-roots",
36 not(feature = "blocking-rustls-fips")
37))]
38mod webpki_roots_tests;