pub struct SendTestEmail {
pub email_to: Option<Vec<String>>,
}Fields§
§email_to: Option<Vec<String>>List of the email addresses of the recipients whom you wish to send the test mail. If left empty, the test mail will be sent to your entire test list.
Implementations§
Source§impl SendTestEmail
impl SendTestEmail
pub fn new() -> SendTestEmail
Trait Implementations§
Source§impl Clone for SendTestEmail
impl Clone for SendTestEmail
Source§fn clone(&self) -> SendTestEmail
fn clone(&self) -> SendTestEmail
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 SendTestEmail
impl Debug for SendTestEmail
Source§impl Default for SendTestEmail
impl Default for SendTestEmail
Source§fn default() -> SendTestEmail
fn default() -> SendTestEmail
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendTestEmail
impl<'de> Deserialize<'de> for SendTestEmail
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 SendTestEmail
impl PartialEq for SendTestEmail
Source§impl Serialize for SendTestEmail
impl Serialize for SendTestEmail
impl StructuralPartialEq for SendTestEmail
Auto Trait Implementations§
impl Freeze for SendTestEmail
impl RefUnwindSafe for SendTestEmail
impl Send for SendTestEmail
impl Sync for SendTestEmail
impl Unpin for SendTestEmail
impl UnwindSafe for SendTestEmail
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