pub struct ConfirmPayment {
pub payment_key: String,
pub order_id: String,
pub amount: i32,
}
Fields§
§payment_key: String
§order_id: String
§amount: i32
Implementations§
Trait Implementations§
Source§impl Clone for ConfirmPayment
impl Clone for ConfirmPayment
Source§fn clone(&self) -> ConfirmPayment
fn clone(&self) -> ConfirmPayment
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 ConfirmPayment
impl Debug for ConfirmPayment
Source§impl<'de> Deserialize<'de> for ConfirmPayment
impl<'de> Deserialize<'de> for ConfirmPayment
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 ConfirmPayment
impl RefUnwindSafe for ConfirmPayment
impl Send for ConfirmPayment
impl Sync for ConfirmPayment
impl Unpin for ConfirmPayment
impl UnwindSafe for ConfirmPayment
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