[][src]Type Definition stripe::Response

type Response<T> = Result<T, Error>;

An alias for Result.

This example is not tested
type Response<T> = Result<T, Error>;

If the async feature is enabled, this type is redefined as:

This example is not tested
type Response<T> = Box<dyn Future<Item = T, Error = Error> + Send>