Skip to main content

cloud_sdk_reqwest/asynchronous/
mod.rs

1//! Hardened provider-neutral asynchronous transport implementation.
2
3mod body;
4mod client;
5mod config;
6
7pub use crate::shared::{
8    BearerToken, BearerTokenError, BuildError, EndpointError, HttpsEndpoint,
9    MAX_BEARER_TOKEN_BYTES, MAX_TIMEOUT_SECONDS, RequestTimeouts, TimeoutError, TransportError,
10    UserAgent, UserAgentError,
11};
12pub use client::AsyncClient;
13pub use config::AsyncClientBuilder;
14
15#[cfg(test)]
16mod tests;