pub enum SendAttemptResult {
Success,
TimedOut,
TlsIssue,
CircularRedirect,
NoResponse,
SocketIssue,
UnsupportedCharset,
InvalidResponse,
PrematureClose,
UnsuccessfulHttpResponseCode,
Other,
}Expand description
The success or error information the App Store server records when it attempts to send an App Store server notification to your server.
Variants§
Success
TimedOut
TlsIssue
CircularRedirect
NoResponse
SocketIssue
UnsupportedCharset
InvalidResponse
PrematureClose
UnsuccessfulHttpResponseCode
Other
Trait Implementations§
Source§impl Clone for SendAttemptResult
impl Clone for SendAttemptResult
Source§fn clone(&self) -> SendAttemptResult
fn clone(&self) -> SendAttemptResult
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 SendAttemptResult
impl Debug for SendAttemptResult
Source§impl<'de> Deserialize<'de> for SendAttemptResult
impl<'de> Deserialize<'de> for SendAttemptResult
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 SendAttemptResult
impl Hash for SendAttemptResult
Source§impl PartialEq for SendAttemptResult
impl PartialEq for SendAttemptResult
Source§impl Serialize for SendAttemptResult
impl Serialize for SendAttemptResult
impl Eq for SendAttemptResult
impl StructuralPartialEq for SendAttemptResult
Auto Trait Implementations§
impl Freeze for SendAttemptResult
impl RefUnwindSafe for SendAttemptResult
impl Send for SendAttemptResult
impl Sync for SendAttemptResult
impl Unpin for SendAttemptResult
impl UnwindSafe for SendAttemptResult
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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