pub struct WaitPaymentResponse {
pub payment_identifier: PaymentIdentifier,
pub payment_amount: Amount,
pub unit: CurrencyUnit,
pub payment_id: String,
}
Expand description
Wait any invoice response
Fields§
§payment_identifier: PaymentIdentifier
Request look up id Id that relates the quote and payment request
payment_amount: Amount
Payment amount
unit: CurrencyUnit
Unit
payment_id: String
Unique id of payment
Trait Implementations§
Source§impl Clone for WaitPaymentResponse
impl Clone for WaitPaymentResponse
Source§fn clone(&self) -> WaitPaymentResponse
fn clone(&self) -> WaitPaymentResponse
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 WaitPaymentResponse
impl Debug for WaitPaymentResponse
Source§impl<'de> Deserialize<'de> for WaitPaymentResponse
impl<'de> Deserialize<'de> for WaitPaymentResponse
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 Hash for WaitPaymentResponse
impl Hash for WaitPaymentResponse
Auto Trait Implementations§
impl Freeze for WaitPaymentResponse
impl RefUnwindSafe for WaitPaymentResponse
impl Send for WaitPaymentResponse
impl Sync for WaitPaymentResponse
impl Unpin for WaitPaymentResponse
impl UnwindSafe for WaitPaymentResponse
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