pub struct MailJob {
pub id: Option<String>,
pub created_date: Option<String>,
pub updated_date: Option<String>,
pub sent: Option<bool>,
pub sending_date: Option<String>,
pub subject: Option<String>,
pub body: Option<String>,
pub bcc: Option<bool>,
pub to: Option<Vec<String>>,
pub upload_ids: Option<Vec<String>>,
}Fields§
§id: Option<String>§created_date: Option<String>§updated_date: Option<String>§sent: Option<bool>§sending_date: Option<String>§subject: Option<String>§body: Option<String>§bcc: Option<bool>§to: Option<Vec<String>>§upload_ids: Option<Vec<String>>Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MailJob
impl<'de> Deserialize<'de> for MailJob
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 MailJob
Auto Trait Implementations§
impl Freeze for MailJob
impl RefUnwindSafe for MailJob
impl Send for MailJob
impl Sync for MailJob
impl Unpin for MailJob
impl UnwindSafe for MailJob
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