Skip to main content

cloud_sdk_reqwest/asynchronous/
mod.rs

1//! Hardened provider-neutral asynchronous transport implementation.
2
3mod body;
4mod client;
5mod config;
6mod raw;
7
8pub use crate::shared::{
9    BearerCredential, BearerCredentialScope, BearerCredentialScopeError, BearerCredentialSnapshot,
10    BearerRefreshHandoff, BearerToken, BearerTokenError, BuildError, CredentialStateError,
11    CredentialUpdateError, CustomEndpointAcknowledgement, EndpointError, HttpsEndpoint,
12    MAX_BEARER_TOKEN_BYTES, MAX_CONFIGURED_ENDPOINT_BYTES, MAX_RAW_REQUEST_BODY_BYTES,
13    MAX_TIMEOUT_SECONDS, MAX_UPSTREAM_HTTP1_HEAD_BYTES, MAX_UPSTREAM_HTTP1_HEADERS, RawHttpError,
14    RawTransportFailure, RequestTimeouts, TimeoutError, TokenRefreshError, TokenRotationError,
15    TransportError, UserAgent, UserAgentError,
16};
17pub use client::AsyncClient;
18pub use config::{AsyncClientBuilder, RawAsyncClientBuilder};
19pub use raw::RawAsyncClient;
20
21#[cfg(test)]
22mod tests;