pub enum InvoicePaymentStatus {
Pending,
Succeeded,
Failed,
}Expand description
Defines the payment status of an invoice.
Variants§
Trait Implementations§
Source§impl Clone for InvoicePaymentStatus
impl Clone for InvoicePaymentStatus
Source§fn clone(&self) -> InvoicePaymentStatus
fn clone(&self) -> InvoicePaymentStatus
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 InvoicePaymentStatus
impl Debug for InvoicePaymentStatus
Source§impl<'de> Deserialize<'de> for InvoicePaymentStatus
impl<'de> Deserialize<'de> for InvoicePaymentStatus
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 FromStr for InvoicePaymentStatus
impl FromStr for InvoicePaymentStatus
Source§impl Serialize for InvoicePaymentStatus
impl Serialize for InvoicePaymentStatus
Auto Trait Implementations§
impl Freeze for InvoicePaymentStatus
impl RefUnwindSafe for InvoicePaymentStatus
impl Send for InvoicePaymentStatus
impl Sync for InvoicePaymentStatus
impl Unpin for InvoicePaymentStatus
impl UnwindSafe for InvoicePaymentStatus
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