pub enum PaymentPlatformEnum {
PaymentPlatformName(String),
PaymentPlatform(PaymentPlatform),
}Variants§
PaymentPlatformName(String)
PaymentPlatform(PaymentPlatform)
Trait Implementations§
Source§impl Clone for PaymentPlatformEnum
impl Clone for PaymentPlatformEnum
Source§fn clone(&self) -> PaymentPlatformEnum
fn clone(&self) -> PaymentPlatformEnum
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 PaymentPlatformEnum
impl Debug for PaymentPlatformEnum
Source§impl<'de> Deserialize<'de> for PaymentPlatformEnum
impl<'de> Deserialize<'de> for PaymentPlatformEnum
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 PaymentPlatformEnum
impl PartialEq for PaymentPlatformEnum
Source§impl Serialize for PaymentPlatformEnum
impl Serialize for PaymentPlatformEnum
impl StructuralPartialEq for PaymentPlatformEnum
Auto Trait Implementations§
impl Freeze for PaymentPlatformEnum
impl RefUnwindSafe for PaymentPlatformEnum
impl Send for PaymentPlatformEnum
impl Sync for PaymentPlatformEnum
impl Unpin for PaymentPlatformEnum
impl UnwindSafe for PaymentPlatformEnum
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