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

pub struct PaymentForm {
    pub can_save_credentials: bool,
    pub password_missing: bool,
    pub bot_id: i32,
    pub invoice: Invoice,
    pub provider_id: i32,
    pub url: String,
    pub native_provider: Option<String>,
    pub native_params: Option<DataJson>,
    pub saved_info: Option<PaymentRequestedInfo>,
    pub saved_credentials: Option<PaymentSavedCredentials>,
    pub users: Vec<User>,
}

Fields

can_save_credentials: boolpassword_missing: boolbot_id: i32invoice: Invoiceprovider_id: i32url: Stringnative_provider: Option<String>native_params: Option<DataJson>saved_info: Option<PaymentRequestedInfo>saved_credentials: Option<PaymentSavedCredentials>users: Vec<User>

Trait Implementations

impl Clone for PaymentForm[src]

impl Debug for PaymentForm[src]

impl Deserializable for PaymentForm[src]

impl From<PaymentForm> for PaymentForm[src]

impl From<PaymentForm> for PaymentForm[src]

impl Identifiable for PaymentForm[src]

impl PartialEq<PaymentForm> for PaymentForm[src]

impl Serializable for PaymentForm[src]

impl StructuralPartialEq for PaymentForm[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.