pub struct DeliveryAttempt {
pub url: String,
pub status: u16,
pub success: bool,
pub timestamp: String,
pub error: Option<String>,
}Expand description
A single delivery attempt record.
Fields§
§url: String§status: u16§success: bool§timestamp: String§error: Option<String>Trait Implementations§
Source§impl Clone for DeliveryAttempt
impl Clone for DeliveryAttempt
Source§fn clone(&self) -> DeliveryAttempt
fn clone(&self) -> DeliveryAttempt
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 moreAuto Trait Implementations§
impl Freeze for DeliveryAttempt
impl RefUnwindSafe for DeliveryAttempt
impl Send for DeliveryAttempt
impl Sync for DeliveryAttempt
impl Unpin for DeliveryAttempt
impl UnsafeUnpin for DeliveryAttempt
impl UnwindSafe for DeliveryAttempt
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