pub struct Email {
pub id: String,
pub object: String,
pub to: Vec<String>,
pub from: String,
pub created_at: String,
pub subject: String,
pub html: String,
pub text: String,
pub bcc: Vec<String>,
pub cc: Vec<String>,
pub reply_to: Vec<String>,
pub last_event: String,
}
Fields§
§id: String
§object: String
§to: Vec<String>
§from: String
§created_at: String
§subject: String
§html: String
§text: String
§bcc: Vec<String>
§cc: Vec<String>
§reply_to: Vec<String>
§last_event: String
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Email
impl<'de> Deserialize<'de> for Email
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 Email
impl RefUnwindSafe for Email
impl Send for Email
impl Sync for Email
impl Unpin for Email
impl UnwindSafe for Email
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