pub struct AdvancedCommerceResponse {
pub signed_renewal_info: String,
pub signed_transaction_info: String,
}Expand description
The base response body for an Advanced Commerce request.
Fields§
§signed_renewal_info: StringSubscription renewal information signed by the App Store, in JSON Web Signature (JWS) format.
signed_transaction_info: StringTransaction information signed by the App Store, in JWS Compact Serialization format.
Trait Implementations§
Source§impl Clone for AdvancedCommerceResponse
impl Clone for AdvancedCommerceResponse
Source§fn clone(&self) -> AdvancedCommerceResponse
fn clone(&self) -> AdvancedCommerceResponse
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 AdvancedCommerceResponse
impl Debug for AdvancedCommerceResponse
Source§impl<'de> Deserialize<'de> for AdvancedCommerceResponse
impl<'de> Deserialize<'de> for AdvancedCommerceResponse
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 Hash for AdvancedCommerceResponse
impl Hash for AdvancedCommerceResponse
Source§impl PartialEq for AdvancedCommerceResponse
impl PartialEq for AdvancedCommerceResponse
Source§impl Serialize for AdvancedCommerceResponse
impl Serialize for AdvancedCommerceResponse
impl Eq for AdvancedCommerceResponse
impl StructuralPartialEq for AdvancedCommerceResponse
Auto Trait Implementations§
impl Freeze for AdvancedCommerceResponse
impl RefUnwindSafe for AdvancedCommerceResponse
impl Send for AdvancedCommerceResponse
impl Sync for AdvancedCommerceResponse
impl Unpin for AdvancedCommerceResponse
impl UnwindSafe for AdvancedCommerceResponse
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