pub struct SendStats {
pub send_count: u64,
pub bounce_count: u64,
pub complaint_count: u64,
pub delivery_attempts: u64,
pub reject_count: u64,
}Expand description
Snapshot of send statistics.
Fields§
§send_count: u64Number of successful sends.
bounce_count: u64Number of bounces.
complaint_count: u64Number of complaints.
delivery_attempts: u64Number of delivery attempts.
reject_count: u64Number of rejects.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for SendStats
impl RefUnwindSafe for SendStats
impl Send for SendStats
impl Sync for SendStats
impl Unpin for SendStats
impl UnsafeUnpin for SendStats
impl UnwindSafe for SendStats
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