pub enum RefundReason {
Duplicate,
ExpiredUncapturedCharge,
Fraudulent,
RequestedByCustomer,
}
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§
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§type Err = StripeParseError
type Err = StripeParseError
The associated error which can be returned from parsing.
Source§fn from_str(s: &str) -> Result<RefundReason, <RefundReason as FromStr>::Err>
fn from_str(s: &str) -> Result<RefundReason, <RefundReason as FromStr>::Err>
Parses a string
s
to return a value of this type. Read moreSource§impl PartialEq for RefundReason
impl PartialEq for RefundReason
impl Copy 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