async-stripe 0.41.0

API bindings for the Stripe HTTP API
Documentation
mod request_strategy;
mod stripe;

mod base {
    #[cfg(any(
        feature = "runtime-tokio-hyper",
        feature = "runtime-tokio-hyper-rustls",
        feature = "runtime-tokio-hyper-rustls-webpki",
        feature = "runtime-blocking",
        feature = "runtime-blocking-rustls",
        feature = "runtime-blocking-rustls-webpki",
    ))]
    pub mod tokio;

    #[cfg(feature = "runtime-async-std-surf")]
    pub mod async_std;

    #[cfg(any(
        feature = "runtime-blocking",
        feature = "runtime-blocking-rustls",
        feature = "runtime-blocking-rustls-webpki"
    ))]
    pub mod tokio_blocking;
}

#[cfg(any(
    feature = "runtime-blocking",
    feature = "runtime-blocking-rustls",
    feature = "runtime-blocking-rustls-webpki"
))]
pub(crate) mod config {
    pub(crate) use super::base::tokio_blocking::{err, ok};
    pub use super::base::tokio_blocking::{Response, TokioBlockingClient as BaseClient};
}

#[cfg(any(
    feature = "runtime-tokio-hyper",
    feature = "runtime-tokio-hyper-rustls",
    feature = "runtime-tokio-hyper-rustls-webpki"
))]
pub(crate) mod config {
    pub(crate) use super::base::tokio::{err, ok};
    pub use super::base::tokio::{Response, TokioClient as BaseClient};
}

#[cfg(feature = "runtime-async-std-surf")]
pub(crate) mod config {
    pub(crate) use super::base::async_std::{err, ok};
    pub use super::base::async_std::{AsyncStdClient as BaseClient, Response};
}

pub use config::BaseClient;
/// An alias for `Result`.
///
/// If `blocking` is enabled, defined as:
///
/// ```rust,ignore
/// type Response<T> = Result<T, Error>;
/// ```
///
/// If the `async` feature is enabled, this type is defined as:
///
/// ```rust,ignore
/// type Response<T> = Box<dyn Future<Result<T, Error>>>;
/// ```
pub use config::Response;
pub use request_strategy::RequestStrategy;

pub use self::stripe::Client;