pub struct NotificaBodyEmail {
pub target_email: Option<String>,
pub target_name: Option<String>,
pub sender_name: Option<String>,
pub subject: Option<String>,
pub params: HashMap<String, String>,
}Fields§
§target_email: Option<String>§target_name: Option<String>§sender_name: Option<String>§subject: Option<String>§params: HashMap<String, String>Trait Implementations§
Source§impl Clone for NotificaBodyEmail
impl Clone for NotificaBodyEmail
Source§fn clone(&self) -> NotificaBodyEmail
fn clone(&self) -> NotificaBodyEmail
Returns a duplicate of the value. Read more
1.0.0 · 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 NotificaBodyEmail
impl Debug for NotificaBodyEmail
Source§impl<'de> Deserialize<'de> for NotificaBodyEmail
impl<'de> Deserialize<'de> for NotificaBodyEmail
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 NotificaBodyEmail
impl RefUnwindSafe for NotificaBodyEmail
impl Send for NotificaBodyEmail
impl Sync for NotificaBodyEmail
impl Unpin for NotificaBodyEmail
impl UnwindSafe for NotificaBodyEmail
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