pub struct LocalDelivery {
pub timestamp: DateTime<Utc>,
pub queue_id: String,
pub recipient: String,
pub original_recipient: Option<String>,
pub relay: String,
pub delay: f64,
pub delays: Vec<f64>,
pub dsn: String,
pub status: DeliveryStatus,
pub delivery_method: DeliveryMethod,
pub size: Option<u64>,
pub nrcpt: Option<u32>,
}Fields§
§timestamp: DateTime<Utc>§queue_id: String§recipient: String§original_recipient: Option<String>§relay: String§delay: f64§delays: Vec<f64>§dsn: String§status: DeliveryStatus§delivery_method: DeliveryMethod§size: Option<u64>§nrcpt: Option<u32>Trait Implementations§
Source§impl Clone for LocalDelivery
impl Clone for LocalDelivery
Source§fn clone(&self) -> LocalDelivery
fn clone(&self) -> LocalDelivery
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 LocalDelivery
impl Debug for LocalDelivery
Source§impl<'de> Deserialize<'de> for LocalDelivery
impl<'de> Deserialize<'de> for LocalDelivery
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
Auto Trait Implementations§
impl Freeze for LocalDelivery
impl RefUnwindSafe for LocalDelivery
impl Send for LocalDelivery
impl Sync for LocalDelivery
impl Unpin for LocalDelivery
impl UnwindSafe for LocalDelivery
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