[][src]Struct grammers_tl_types::types::payments::PaymentReceipt

pub struct PaymentReceipt {
    pub date: i32,
    pub bot_id: i32,
    pub invoice: Invoice,
    pub provider_id: i32,
    pub info: Option<PaymentRequestedInfo>,
    pub shipping: Option<ShippingOption>,
    pub currency: String,
    pub total_amount: i64,
    pub credentials_title: String,
    pub users: Vec<User>,
}

Fields

date: i32bot_id: i32invoice: Invoiceprovider_id: i32info: Option<PaymentRequestedInfo>shipping: Option<ShippingOption>currency: Stringtotal_amount: i64credentials_title: Stringusers: Vec<User>

Trait Implementations

impl Clone for PaymentReceipt[src]

impl Debug for PaymentReceipt[src]

impl Deserializable for PaymentReceipt[src]

impl From<PaymentReceipt> for PaymentReceipt[src]

impl From<PaymentReceipt> for PaymentReceipt[src]

impl Identifiable for PaymentReceipt[src]

impl PartialEq<PaymentReceipt> for PaymentReceipt[src]

impl Serializable for PaymentReceipt[src]

impl StructuralPartialEq for PaymentReceipt[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.