[][src]Struct cdpay::PaymentInfo

pub struct PaymentInfo {
    pub address: String,
    pub amount: String,
    pub currency_id: CryptoCurrency,
    pub currency: String,
    pub msg: String,
    pub handle: PaymentHandle,
}

Information about payment

Fields

The address to pay to.

The amount of currency - as string to avoid problems with rounding.

The selected crypto currency.

The selected crypto currency as string.

Message

Payent handle.

Allows waiting for payment or getting iframe ID.

Trait Implementations

impl Debug for PaymentInfo
[src]

Auto Trait Implementations

impl !Send for PaymentInfo

impl !Sync for PaymentInfo

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
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

impl<T> Erased for T