pub enum TransactionAdvancedCommerceRefundReason {
Legal,
ModifyItems,
Unintended,
Unfulfilled,
Unsatisfied,
Other,
Unknown(String),
}Expand description
Wraps advanced-commerce refund reasons returned by StoreKit.
Variants§
Legal
Represents the Legal StoreKit case.
ModifyItems
Represents the ModifyItems StoreKit case.
Unintended
Represents the Unintended StoreKit case.
Unfulfilled
Represents the Unfulfilled StoreKit case.
Unsatisfied
Represents the Unsatisfied StoreKit case.
Other
Represents the other StoreKit case.
Unknown(String)
Preserves an unrecognized StoreKit case.
Implementations§
Trait Implementations§
Source§impl Clone for TransactionAdvancedCommerceRefundReason
impl Clone for TransactionAdvancedCommerceRefundReason
Source§fn clone(&self) -> TransactionAdvancedCommerceRefundReason
fn clone(&self) -> TransactionAdvancedCommerceRefundReason
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for TransactionAdvancedCommerceRefundReason
impl PartialEq for TransactionAdvancedCommerceRefundReason
Source§fn eq(&self, other: &TransactionAdvancedCommerceRefundReason) -> bool
fn eq(&self, other: &TransactionAdvancedCommerceRefundReason) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TransactionAdvancedCommerceRefundReason
impl StructuralPartialEq for TransactionAdvancedCommerceRefundReason
Auto Trait Implementations§
impl Freeze for TransactionAdvancedCommerceRefundReason
impl RefUnwindSafe for TransactionAdvancedCommerceRefundReason
impl Send for TransactionAdvancedCommerceRefundReason
impl Sync for TransactionAdvancedCommerceRefundReason
impl Unpin for TransactionAdvancedCommerceRefundReason
impl UnsafeUnpin for TransactionAdvancedCommerceRefundReason
impl UnwindSafe for TransactionAdvancedCommerceRefundReason
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