pub struct SendAttemptItem {
pub attempt_date: Option<DateTime<Utc>>,
pub send_attempt_result: Option<SendAttemptResult>,
}Expand description
The success or error information and the date the App Store server records when it attempts to send a server notification to your server.
Fields§
§attempt_date: Option<DateTime<Utc>>The date the App Store server attempts to send a notification.
send_attempt_result: Option<SendAttemptResult>The success or error information the App Store server records when it attempts to send an App Store server notification to your server.
Trait Implementations§
Source§impl Clone for SendAttemptItem
impl Clone for SendAttemptItem
Source§fn clone(&self) -> SendAttemptItem
fn clone(&self) -> SendAttemptItem
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 SendAttemptItem
impl Debug for SendAttemptItem
Source§impl<'de> Deserialize<'de> for SendAttemptItem
impl<'de> Deserialize<'de> for SendAttemptItem
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 SendAttemptItem
impl Hash for SendAttemptItem
Source§impl PartialEq for SendAttemptItem
impl PartialEq for SendAttemptItem
Source§impl Serialize for SendAttemptItem
impl Serialize for SendAttemptItem
impl StructuralPartialEq for SendAttemptItem
Auto Trait Implementations§
impl Freeze for SendAttemptItem
impl RefUnwindSafe for SendAttemptItem
impl Send for SendAttemptItem
impl Sync for SendAttemptItem
impl Unpin for SendAttemptItem
impl UnwindSafe for SendAttemptItem
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