pub struct OrderLookupResponse {
pub status: OrderLookupStatus,
pub signed_transactions: Vec<String>,
}Expand description
A response that includes the order lookup status and an array of signed transactions for the in-app purchases in the order.
Fields§
§status: OrderLookupStatusThe status that indicates whether the order ID is valid.
signed_transactions: Vec<String>An array of in-app purchase transactions that are part of the order, signed by Apple, in JSON Web Signature format.
Trait Implementations§
Source§impl Clone for OrderLookupResponse
impl Clone for OrderLookupResponse
Source§fn clone(&self) -> OrderLookupResponse
fn clone(&self) -> OrderLookupResponse
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 OrderLookupResponse
impl Debug for OrderLookupResponse
Source§impl<'de> Deserialize<'de> for OrderLookupResponse
impl<'de> Deserialize<'de> for OrderLookupResponse
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 OrderLookupResponse
impl Hash for OrderLookupResponse
Source§impl PartialEq for OrderLookupResponse
impl PartialEq for OrderLookupResponse
Source§impl Serialize for OrderLookupResponse
impl Serialize for OrderLookupResponse
impl Eq for OrderLookupResponse
impl StructuralPartialEq for OrderLookupResponse
Auto Trait Implementations§
impl Freeze for OrderLookupResponse
impl RefUnwindSafe for OrderLookupResponse
impl Send for OrderLookupResponse
impl Sync for OrderLookupResponse
impl Unpin for OrderLookupResponse
impl UnwindSafe for OrderLookupResponse
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