[][src]Struct cdpay::CDPayBuilder

pub struct CDPayBuilder { /* fields omitted */ }

The payment gateway.

This struct contains all necessary information used to connect to the payment gateway.

Methods

impl CDPayBuilder[src]

pub fn new(tokio_handle: Handle, api_key: String) -> Self[src]

Initiates payment builder.

pub fn new_test(tokio_handle: Handle, api_key: String) -> Self[src]

Initiates payment builder using test network.

Warning: This doesn't use real coins - only test coins. It is guaranteed that using this in exchange for real products will lead to loss!

pub fn set_logger(&mut self, logger: &Logger)[src]

Sets the logger for this instance.

This function creates a child logger that logs network kind.

Only available if slog feature is enabled.

pub fn init_payment_request(
    &self,
    request_data: &RequestData
) -> Result<Box<dyn Future<Item = PaymentInfo, Error = APIError>>, TlsError>
[src]

Requests new payment.

Auto Trait Implementations

impl !Send for CDPayBuilder

impl !Sync for CDPayBuilder

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Erased for T