pub struct EmailReceipt {
pub message_id: String,
pub provider: String,
pub accepted_at_unix_ms: u64,
}Fields§
§message_id: String§provider: String§accepted_at_unix_ms: u64Trait Implementations§
Source§impl Clone for EmailReceipt
impl Clone for EmailReceipt
Source§fn clone(&self) -> EmailReceipt
fn clone(&self) -> EmailReceipt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 EmailReceipt
impl Debug for EmailReceipt
Source§impl<'de> Deserialize<'de> for EmailReceipt
impl<'de> Deserialize<'de> for EmailReceipt
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 EmailReceipt
impl PartialEq for EmailReceipt
Source§fn eq(&self, other: &EmailReceipt) -> bool
fn eq(&self, other: &EmailReceipt) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EmailReceipt
impl Serialize for EmailReceipt
impl Eq for EmailReceipt
impl StructuralPartialEq for EmailReceipt
Auto Trait Implementations§
impl Freeze for EmailReceipt
impl RefUnwindSafe for EmailReceipt
impl Send for EmailReceipt
impl Sync for EmailReceipt
impl Unpin for EmailReceipt
impl UnsafeUnpin for EmailReceipt
impl UnwindSafe for EmailReceipt
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