pub enum OfferPaymentMode {
FreeTrial,
PayAsYouGo,
PayUpFront,
OneTime,
Unknown(String),
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for OfferPaymentMode
impl Clone for OfferPaymentMode
Source§fn clone(&self) -> OfferPaymentMode
fn clone(&self) -> OfferPaymentMode
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OfferPaymentMode
impl Debug for OfferPaymentMode
Source§impl PartialEq for OfferPaymentMode
impl PartialEq for OfferPaymentMode
Source§fn eq(&self, other: &OfferPaymentMode) -> bool
fn eq(&self, other: &OfferPaymentMode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for OfferPaymentMode
impl StructuralPartialEq for OfferPaymentMode
Auto Trait Implementations§
impl Freeze for OfferPaymentMode
impl RefUnwindSafe for OfferPaymentMode
impl Send for OfferPaymentMode
impl Sync for OfferPaymentMode
impl Unpin for OfferPaymentMode
impl UnsafeUnpin for OfferPaymentMode
impl UnwindSafe for OfferPaymentMode
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