#[non_exhaustive]pub enum RefundReason {
Duplicate,
ExpiredUncapturedCharge,
Fraudulent,
RequestedByCustomer,
Unknown(String),
}Expand description
Reason for the refund, which is either user-provided (duplicate, fraudulent, or requested_by_customer) or generated by Stripe internally (expired_uncaptured_charge).
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Duplicate
ExpiredUncapturedCharge
Fraudulent
RequestedByCustomer
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for RefundReason
impl Clone for RefundReason
Source§fn clone(&self) -> RefundReason
fn clone(&self) -> RefundReason
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 RefundReason
impl Debug for RefundReason
Source§impl Deserialize for RefundReason
impl Deserialize for RefundReason
Source§impl Display for RefundReason
impl Display for RefundReason
Source§impl FromStr for RefundReason
impl FromStr for RefundReason
Source§impl FromValueOpt for RefundReason
impl FromValueOpt for RefundReason
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for RefundReason
impl PartialEq for RefundReason
impl Eq for RefundReason
impl StructuralPartialEq for RefundReason
Auto Trait Implementations§
impl Freeze for RefundReason
impl RefUnwindSafe for RefundReason
impl Send for RefundReason
impl Sync for RefundReason
impl Unpin for RefundReason
impl UnwindSafe for RefundReason
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