pub struct CreatePaymentArgs {
pub product: ProductParameter,
pub quantity: i32,
pub provider_id: Option<String>,
pub email: Option<String>,
pub language: Option<String>,
}Expand description
Create payment args
Fields§
§product: ProductParameter§quantity: i32§provider_id: Option<String>§email: Option<String>§language: Option<String>Trait Implementations§
Source§impl Clone for CreatePaymentArgs
impl Clone for CreatePaymentArgs
Source§fn clone(&self) -> CreatePaymentArgs
fn clone(&self) -> CreatePaymentArgs
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 CreatePaymentArgs
impl Debug for CreatePaymentArgs
Source§impl<'de> Deserialize<'de> for CreatePaymentArgs
impl<'de> Deserialize<'de> for CreatePaymentArgs
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
Auto Trait Implementations§
impl Freeze for CreatePaymentArgs
impl RefUnwindSafe for CreatePaymentArgs
impl Send for CreatePaymentArgs
impl Sync for CreatePaymentArgs
impl Unpin for CreatePaymentArgs
impl UnsafeUnpin for CreatePaymentArgs
impl UnwindSafe for CreatePaymentArgs
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