pub struct TransactionCommitmentInfo {
pub billing_period_number: u64,
pub total_billing_periods: u64,
pub expiration_date: String,
pub price: String,
}Expand description
Wraps StoreKit.Transaction.CommitmentInfo.
Fields§
§billing_period_number: u64Billing period number reported by StoreKit.
total_billing_periods: u64Total billing periods reported by StoreKit.
expiration_date: StringExpiration date reported by StoreKit.
price: StringPrice reported by StoreKit.
Trait Implementations§
Source§impl Clone for TransactionCommitmentInfo
impl Clone for TransactionCommitmentInfo
Source§fn clone(&self) -> TransactionCommitmentInfo
fn clone(&self) -> TransactionCommitmentInfo
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 Debug for TransactionCommitmentInfo
impl Debug for TransactionCommitmentInfo
Source§impl PartialEq for TransactionCommitmentInfo
impl PartialEq for TransactionCommitmentInfo
Source§fn eq(&self, other: &TransactionCommitmentInfo) -> bool
fn eq(&self, other: &TransactionCommitmentInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TransactionCommitmentInfo
impl StructuralPartialEq for TransactionCommitmentInfo
Auto Trait Implementations§
impl Freeze for TransactionCommitmentInfo
impl RefUnwindSafe for TransactionCommitmentInfo
impl Send for TransactionCommitmentInfo
impl Sync for TransactionCommitmentInfo
impl Unpin for TransactionCommitmentInfo
impl UnsafeUnpin for TransactionCommitmentInfo
impl UnwindSafe for TransactionCommitmentInfo
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