pub enum PremiumPaymentOption {
PremiumPaymentOption(PremiumPaymentOption),
}Variants§
PremiumPaymentOption(PremiumPaymentOption)
Describes an option for buying Telegram Premium to a user
Trait Implementations§
Source§impl Clone for PremiumPaymentOption
impl Clone for PremiumPaymentOption
Source§fn clone(&self) -> PremiumPaymentOption
fn clone(&self) -> PremiumPaymentOption
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for PremiumPaymentOption
impl Debug for PremiumPaymentOption
Source§impl<'de> Deserialize<'de> for PremiumPaymentOption
impl<'de> Deserialize<'de> for PremiumPaymentOption
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PremiumPaymentOption
impl PartialEq for PremiumPaymentOption
Source§impl Serialize for PremiumPaymentOption
impl Serialize for PremiumPaymentOption
impl StructuralPartialEq for PremiumPaymentOption
Auto Trait Implementations§
impl Freeze for PremiumPaymentOption
impl RefUnwindSafe for PremiumPaymentOption
impl Send for PremiumPaymentOption
impl Sync for PremiumPaymentOption
impl Unpin for PremiumPaymentOption
impl UnwindSafe for PremiumPaymentOption
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more