pub enum AppStoreMerchandisingPresentationResult {
Dismissed,
PurchaseCompleted(PurchaseResult),
}Expand description
Represents the result returned by StoreKit merchandising presentation APIs.
Variants§
Dismissed
Represents the Dismissed StoreKit case.
PurchaseCompleted(PurchaseResult)
The merchandising flow completed with a purchase result.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AppStoreMerchandisingPresentationResult
impl RefUnwindSafe for AppStoreMerchandisingPresentationResult
impl !Send for AppStoreMerchandisingPresentationResult
impl !Sync for AppStoreMerchandisingPresentationResult
impl Unpin for AppStoreMerchandisingPresentationResult
impl UnsafeUnpin for AppStoreMerchandisingPresentationResult
impl UnwindSafe for AppStoreMerchandisingPresentationResult
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