pub struct SendResponse {
pub anonymous_results: Option<HashMap<String, EmailTemplateErrors>>,
pub results: Option<HashMap<String, EmailTemplateErrors>>,
}
Expand description
SendResponse :
Fields§
§anonymous_results: Option<HashMap<String, EmailTemplateErrors>>
§results: Option<HashMap<String, EmailTemplateErrors>>
Implementations§
Source§impl SendResponse
impl SendResponse
Sourcepub fn new() -> SendResponse
pub fn new() -> SendResponse
Trait Implementations§
Source§impl Clone for SendResponse
impl Clone for SendResponse
Source§fn clone(&self) -> SendResponse
fn clone(&self) -> SendResponse
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 SendResponse
impl Debug for SendResponse
Source§impl Default for SendResponse
impl Default for SendResponse
Source§fn default() -> SendResponse
fn default() -> SendResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendResponse
impl<'de> Deserialize<'de> for SendResponse
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
Source§impl PartialEq for SendResponse
impl PartialEq for SendResponse
Source§impl Serialize for SendResponse
impl Serialize for SendResponse
impl StructuralPartialEq for SendResponse
Auto Trait Implementations§
impl Freeze for SendResponse
impl RefUnwindSafe for SendResponse
impl Send for SendResponse
impl Sync for SendResponse
impl Unpin for SendResponse
impl UnwindSafe for SendResponse
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