pub enum PaymentReceipt {
PaymentReceipt(PaymentReceipt),
}Variants§
PaymentReceipt(PaymentReceipt)
Contains information about a successful payment
Trait Implementations§
Source§impl Clone for PaymentReceipt
impl Clone for PaymentReceipt
Source§fn clone(&self) -> PaymentReceipt
fn clone(&self) -> PaymentReceipt
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 PaymentReceipt
impl Debug for PaymentReceipt
Source§impl<'de> Deserialize<'de> for PaymentReceipt
impl<'de> Deserialize<'de> for PaymentReceipt
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 PaymentReceipt
impl PartialEq for PaymentReceipt
Source§impl Serialize for PaymentReceipt
impl Serialize for PaymentReceipt
impl StructuralPartialEq for PaymentReceipt
Auto Trait Implementations§
impl Freeze for PaymentReceipt
impl RefUnwindSafe for PaymentReceipt
impl Send for PaymentReceipt
impl Sync for PaymentReceipt
impl Unpin for PaymentReceipt
impl UnwindSafe for PaymentReceipt
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