pub struct PurchaseNotificationResponse {
pub status: Option<i32>,
pub debug_info: Option<DebugInfo>,
pub localized_error_message: Option<String>,
pub purchase_id: Option<String>,
}Fields§
§status: Option<i32>§debug_info: Option<DebugInfo>§localized_error_message: Option<String>§purchase_id: Option<String>Implementations§
Source§impl PurchaseNotificationResponse
impl PurchaseNotificationResponse
Sourcepub fn status(&self) -> i32
pub fn status(&self) -> i32
Returns the value of status, or the default value if status is unset.
Sourcepub fn localized_error_message(&self) -> &str
pub fn localized_error_message(&self) -> &str
Returns the value of localized_error_message, or the default value if localized_error_message is unset.
Sourcepub fn purchase_id(&self) -> &str
pub fn purchase_id(&self) -> &str
Returns the value of purchase_id, or the default value if purchase_id is unset.
Trait Implementations§
Source§impl Clone for PurchaseNotificationResponse
impl Clone for PurchaseNotificationResponse
Source§fn clone(&self) -> PurchaseNotificationResponse
fn clone(&self) -> PurchaseNotificationResponse
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 PurchaseNotificationResponse
impl Debug for PurchaseNotificationResponse
Source§impl Message for PurchaseNotificationResponse
impl Message for PurchaseNotificationResponse
Source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
Source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
Source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
Source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
Source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
Source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
Source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self. Read moreSource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self.Source§impl PartialEq for PurchaseNotificationResponse
impl PartialEq for PurchaseNotificationResponse
Source§fn eq(&self, other: &PurchaseNotificationResponse) -> bool
fn eq(&self, other: &PurchaseNotificationResponse) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PurchaseNotificationResponse
Auto Trait Implementations§
impl Freeze for PurchaseNotificationResponse
impl RefUnwindSafe for PurchaseNotificationResponse
impl Send for PurchaseNotificationResponse
impl Sync for PurchaseNotificationResponse
impl Unpin for PurchaseNotificationResponse
impl UnwindSafe for PurchaseNotificationResponse
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