[][src]Struct grammers_tl_types::types::Invoice

pub struct Invoice {
    pub test: bool,
    pub name_requested: bool,
    pub phone_requested: bool,
    pub email_requested: bool,
    pub shipping_address_requested: bool,
    pub flexible: bool,
    pub phone_to_provider: bool,
    pub email_to_provider: bool,
    pub currency: String,
    pub prices: Vec<LabeledPrice>,
}

Fields

test: boolname_requested: boolphone_requested: boolemail_requested: boolshipping_address_requested: boolflexible: boolphone_to_provider: boolemail_to_provider: boolcurrency: Stringprices: Vec<LabeledPrice>

Trait Implementations

impl Clone for Invoice[src]

impl Debug for Invoice[src]

impl Deserializable for Invoice[src]

impl From<Invoice> for Invoice[src]

impl From<Invoice> for Invoice[src]

impl Identifiable for Invoice[src]

impl PartialEq<Invoice> for Invoice[src]

impl Serializable for Invoice[src]

impl StructuralPartialEq for Invoice[src]

Auto Trait Implementations

impl RefUnwindSafe for Invoice

impl Send for Invoice

impl Sync for Invoice

impl Unpin for Invoice

impl UnwindSafe for Invoice

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.