pub enum PaymentError {
}Variants§
StripeError(String)
CustomerNotFound
PaymentMethodNotFound
SubscriptionNotFound
InvoiceNotFound
PaymentFailed(String)
InsufficientFunds
CardDeclined
InvalidAmount
ConfigError(String)
WebhookError(String)
SerializationError(String)
InternalError
Trait Implementations§
Source§impl Debug for PaymentError
impl Debug for PaymentError
Source§impl Display for PaymentError
impl Display for PaymentError
Source§impl Error for PaymentError
impl Error for PaymentError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Auto Trait Implementations§
impl Freeze for PaymentError
impl RefUnwindSafe for PaymentError
impl Send for PaymentError
impl Sync for PaymentError
impl Unpin for PaymentError
impl UnwindSafe for PaymentError
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