pub struct SendEmailBatchPermissiveResponse {
pub data: Vec<CreateEmailResponse>,
pub errors: Vec<PermissiveBatchErrors>,
}Fields§
§data: Vec<CreateEmailResponse>The IDs of the sent emails.
errors: Vec<PermissiveBatchErrors>Array of objects for emails which could not be created due to validation errors.
Trait Implementations§
Source§impl Clone for SendEmailBatchPermissiveResponse
impl Clone for SendEmailBatchPermissiveResponse
Source§fn clone(&self) -> SendEmailBatchPermissiveResponse
fn clone(&self) -> SendEmailBatchPermissiveResponse
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<'de> Deserialize<'de> for SendEmailBatchPermissiveResponse
impl<'de> Deserialize<'de> for SendEmailBatchPermissiveResponse
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 SendEmailBatchPermissiveResponse
impl RefUnwindSafe for SendEmailBatchPermissiveResponse
impl Send for SendEmailBatchPermissiveResponse
impl Sync for SendEmailBatchPermissiveResponse
impl Unpin for SendEmailBatchPermissiveResponse
impl UnsafeUnpin for SendEmailBatchPermissiveResponse
impl UnwindSafe for SendEmailBatchPermissiveResponse
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