pub enum RefundReason {
UnintendedPurchase,
FulfillmentIssue,
UnsatisfiedWithPurchase,
Legal,
Other,
ModifyItemsRefund,
SimulateRefundDecline,
}Expand description
The reason to request a refund. RefundReason
Variants§
UnintendedPurchase
FulfillmentIssue
UnsatisfiedWithPurchase
Legal
Other
ModifyItemsRefund
SimulateRefundDecline
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<'de> Deserialize<'de> for RefundReason
impl<'de> Deserialize<'de> for RefundReason
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 RefundReason
impl Hash for RefundReason
Source§impl PartialEq for RefundReason
impl PartialEq for RefundReason
Source§impl Serialize for RefundReason
impl Serialize 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