pub trait BlockingClient {
type Err: PayjpClientErr;
// Required method
fn execute(&self, req: CustomizedPayjpRequest) -> Result<Bytes, Self::Err>;
}
Expand description
An abstraction for defining HTTP clients capable of making blocking API requests compatible with request information generated in the request crates.
Required Associated Types§
Sourcetype Err: PayjpClientErr
type Err: PayjpClientErr
The error returned.