pub struct EmailEventBody {
pub target_email: String,
pub target_name: Option<String>,
pub sender_name: Option<String>,
pub subject: Option<String>,
pub params: Option<HashMap<String, String>>,
}Fields§
§target_email: String§target_name: Option<String>§sender_name: Option<String>§subject: Option<String>§params: Option<HashMap<String, String>>Trait Implementations§
Source§impl Clone for EmailEventBody
impl Clone for EmailEventBody
Source§fn clone(&self) -> EmailEventBody
fn clone(&self) -> EmailEventBody
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 EmailEventBody
impl Debug for EmailEventBody
Source§impl<'de> Deserialize<'de> for EmailEventBody
impl<'de> Deserialize<'de> for EmailEventBody
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 EmailEventBody
impl RefUnwindSafe for EmailEventBody
impl Send for EmailEventBody
impl Sync for EmailEventBody
impl Unpin for EmailEventBody
impl UnsafeUnpin for EmailEventBody
impl UnwindSafe for EmailEventBody
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