pub struct PerRecipientReportEntry {
pub final_recipient: Recipient,
pub action: ReportAction,
pub status: ReportStatus,
pub original_recipient: Option<Recipient>,
pub remote_mta: Option<RemoteMta>,
pub diagnostic_code: Option<DiagnosticCode>,
pub last_attempt_date: Option<DateTime<Utc>>,
pub final_log_id: Option<String>,
pub will_retry_until: Option<DateTime<Utc>>,
pub extensions: BTreeMap<String, Vec<String>>,
}
Fields§
§final_recipient: Recipient
§action: ReportAction
§status: ReportStatus
§original_recipient: Option<Recipient>
§remote_mta: Option<RemoteMta>
§diagnostic_code: Option<DiagnosticCode>
§last_attempt_date: Option<DateTime<Utc>>
§final_log_id: Option<String>
§will_retry_until: Option<DateTime<Utc>>
§extensions: BTreeMap<String, Vec<String>>
Trait Implementations§
Source§impl Clone for PerRecipientReportEntry
impl Clone for PerRecipientReportEntry
Source§fn clone(&self) -> PerRecipientReportEntry
fn clone(&self) -> PerRecipientReportEntry
Returns a copy 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 PerRecipientReportEntry
impl Debug for PerRecipientReportEntry
Source§impl<'de> Deserialize<'de> for PerRecipientReportEntry
impl<'de> Deserialize<'de> for PerRecipientReportEntry
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 PartialEq for PerRecipientReportEntry
impl PartialEq for PerRecipientReportEntry
Source§impl Serialize for PerRecipientReportEntry
impl Serialize for PerRecipientReportEntry
impl Eq for PerRecipientReportEntry
impl StructuralPartialEq for PerRecipientReportEntry
Auto Trait Implementations§
impl Freeze for PerRecipientReportEntry
impl RefUnwindSafe for PerRecipientReportEntry
impl Send for PerRecipientReportEntry
impl Sync for PerRecipientReportEntry
impl Unpin for PerRecipientReportEntry
impl UnwindSafe for PerRecipientReportEntry
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.