pub struct PurchaseHistoryRecord {
pub product_id: String,
pub purchase_time: i64,
pub purchase_token: String,
pub quantity: i32,
pub original_json: String,
pub signature: String,
}Fields§
§product_id: String§purchase_time: i64§purchase_token: String§quantity: i32§original_json: String§signature: StringTrait Implementations§
Source§impl Clone for PurchaseHistoryRecord
impl Clone for PurchaseHistoryRecord
Source§fn clone(&self) -> PurchaseHistoryRecord
fn clone(&self) -> PurchaseHistoryRecord
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 PurchaseHistoryRecord
impl Debug for PurchaseHistoryRecord
Source§impl<'de> Deserialize<'de> for PurchaseHistoryRecord
impl<'de> Deserialize<'de> for PurchaseHistoryRecord
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
Auto Trait Implementations§
impl Freeze for PurchaseHistoryRecord
impl RefUnwindSafe for PurchaseHistoryRecord
impl Send for PurchaseHistoryRecord
impl Sync for PurchaseHistoryRecord
impl Unpin for PurchaseHistoryRecord
impl UnwindSafe for PurchaseHistoryRecord
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