pub struct StoreKitApiError {
pub code: StoreKitApiErrorCode,
pub error_description: Option<String>,
pub failure_reason: Option<String>,
pub recovery_suggestion: Option<String>,
pub underlying_domain: Option<String>,
pub underlying_code: Option<i64>,
pub underlying_description: Option<String>,
}Fields§
§code: StoreKitApiErrorCode§error_description: Option<String>§failure_reason: Option<String>§recovery_suggestion: Option<String>§underlying_domain: Option<String>§underlying_code: Option<i64>§underlying_description: Option<String>Trait Implementations§
Source§impl Clone for StoreKitApiError
impl Clone for StoreKitApiError
Source§fn clone(&self) -> StoreKitApiError
fn clone(&self) -> StoreKitApiError
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 StoreKitApiError
impl Debug for StoreKitApiError
Source§impl PartialEq for StoreKitApiError
impl PartialEq for StoreKitApiError
Source§fn eq(&self, other: &StoreKitApiError) -> bool
fn eq(&self, other: &StoreKitApiError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for StoreKitApiError
impl StructuralPartialEq for StoreKitApiError
Auto Trait Implementations§
impl Freeze for StoreKitApiError
impl RefUnwindSafe for StoreKitApiError
impl Send for StoreKitApiError
impl Sync for StoreKitApiError
impl Unpin for StoreKitApiError
impl UnsafeUnpin for StoreKitApiError
impl UnwindSafe for StoreKitApiError
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