pub struct StoreTransactionGooglePlay {
pub package_name: String,
pub store_product_id: String,
pub purchase_token: String,
}Expand description
A purchase through Google Play
Fields§
§package_name: StringApplication package name
store_product_id: StringIdentifier of the purchased store product
purchase_token: StringGoogle Play purchase token
Trait Implementations§
Source§impl Clone for StoreTransactionGooglePlay
impl Clone for StoreTransactionGooglePlay
Source§fn clone(&self) -> StoreTransactionGooglePlay
fn clone(&self) -> StoreTransactionGooglePlay
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 StoreTransactionGooglePlay
impl Debug for StoreTransactionGooglePlay
Source§impl Default for StoreTransactionGooglePlay
impl Default for StoreTransactionGooglePlay
Source§fn default() -> StoreTransactionGooglePlay
fn default() -> StoreTransactionGooglePlay
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreTransactionGooglePlay
impl<'de> Deserialize<'de> for StoreTransactionGooglePlay
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
impl StructuralPartialEq for StoreTransactionGooglePlay
Auto Trait Implementations§
impl Freeze for StoreTransactionGooglePlay
impl RefUnwindSafe for StoreTransactionGooglePlay
impl Send for StoreTransactionGooglePlay
impl Sync for StoreTransactionGooglePlay
impl Unpin for StoreTransactionGooglePlay
impl UnsafeUnpin for StoreTransactionGooglePlay
impl UnwindSafe for StoreTransactionGooglePlay
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