pub enum VerificationErrorCode {
RevokedCertificate,
InvalidCertificateChain,
InvalidDeviceVerification,
InvalidEncoding,
InvalidSignature,
MissingRequiredProperties,
Unknown(String),
}Expand description
Wraps the verification error codes used by StoreKit.
Variants§
RevokedCertificate
Represents the RevokedCertificate StoreKit case.
InvalidCertificateChain
Represents the InvalidCertificateChain StoreKit case.
InvalidDeviceVerification
Represents the InvalidDeviceVerification StoreKit case.
InvalidEncoding
Represents the InvalidEncoding StoreKit case.
InvalidSignature
Represents the InvalidSignature StoreKit case.
MissingRequiredProperties
Represents the MissingRequiredProperties StoreKit case.
Unknown(String)
Preserves an unrecognized StoreKit case.
Implementations§
Trait Implementations§
Source§impl Clone for VerificationErrorCode
impl Clone for VerificationErrorCode
Source§fn clone(&self) -> VerificationErrorCode
fn clone(&self) -> VerificationErrorCode
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 VerificationErrorCode
impl Debug for VerificationErrorCode
Source§impl PartialEq for VerificationErrorCode
impl PartialEq for VerificationErrorCode
Source§fn eq(&self, other: &VerificationErrorCode) -> bool
fn eq(&self, other: &VerificationErrorCode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for VerificationErrorCode
impl StructuralPartialEq for VerificationErrorCode
Auto Trait Implementations§
impl Freeze for VerificationErrorCode
impl RefUnwindSafe for VerificationErrorCode
impl Send for VerificationErrorCode
impl Sync for VerificationErrorCode
impl Unpin for VerificationErrorCode
impl UnsafeUnpin for VerificationErrorCode
impl UnwindSafe for VerificationErrorCode
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