pub enum StoreTransaction {
AppStore(StoreTransactionAppStore),
GooglePlay(StoreTransactionGooglePlay),
}Variants§
AppStore(StoreTransactionAppStore)
A purchase through App Store
GooglePlay(StoreTransactionGooglePlay)
A purchase through Google Play
Trait Implementations§
Source§impl Clone for StoreTransaction
impl Clone for StoreTransaction
Source§fn clone(&self) -> StoreTransaction
fn clone(&self) -> StoreTransaction
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 StoreTransaction
impl Debug for StoreTransaction
Source§impl<'de> Deserialize<'de> for StoreTransaction
impl<'de> Deserialize<'de> for StoreTransaction
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 PartialEq for StoreTransaction
impl PartialEq for StoreTransaction
Source§impl Serialize for StoreTransaction
impl Serialize for StoreTransaction
impl StructuralPartialEq for StoreTransaction
Auto Trait Implementations§
impl Freeze for StoreTransaction
impl RefUnwindSafe for StoreTransaction
impl Send for StoreTransaction
impl Sync for StoreTransaction
impl Unpin for StoreTransaction
impl UnsafeUnpin for StoreTransaction
impl UnwindSafe for StoreTransaction
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