pub struct Sent {
pub provider: String,
pub id: String,
pub recipients: usize,
}Expand description
Proof that a provider accepted a message.
Fields§
§provider: StringThe provider that took it.
id: StringThe provider’s own identifier for the message, when it returns one — what you quote at their support desk. Empty when it returns nothing.
recipients: usizeHow many recipients it went to (to + cc + bcc).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Sent
impl<'de> Deserialize<'de> for Sent
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 Sent
impl RefUnwindSafe for Sent
impl Send for Sent
impl Sync for Sent
impl Unpin for Sent
impl UnsafeUnpin for Sent
impl UnwindSafe for Sent
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