pub struct Email {Show 13 fields
pub object: Object,
pub id: String,
pub slug: Option<Option<String>>,
pub from_email_name: String,
pub email_address_id: Option<String>,
pub to_email_address: String,
pub user_id: Option<Option<String>>,
pub subject: String,
pub body: String,
pub body_plain: Option<Option<String>>,
pub status: String,
pub data: Option<Option<Value>>,
pub delivered_by_clerk: bool,
}
Fields§
§object: Object
§id: String
§slug: Option<Option<String>>
§from_email_name: String
§email_address_id: Option<String>
§to_email_address: String
§user_id: Option<Option<String>>
§subject: String
§body: String
§body_plain: Option<Option<String>>
§status: String
§data: Option<Option<Value>>
§delivered_by_clerk: bool
Implementations§
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
impl StructuralPartialEq for Email
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