pub struct BatchEmailValidationResponse {
pub results: HashMap<String, AdvancedEmailValidation>,
pub total_processed: i32,
pub successful_validations: i32,
pub failed_validations: i32,
}Fields§
§results: HashMap<String, AdvancedEmailValidation>§total_processed: i32§successful_validations: i32§failed_validations: i32Trait Implementations§
Source§impl Clone for BatchEmailValidationResponse
impl Clone for BatchEmailValidationResponse
Source§fn clone(&self) -> BatchEmailValidationResponse
fn clone(&self) -> BatchEmailValidationResponse
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 BatchEmailValidationResponse
impl Debug for BatchEmailValidationResponse
Source§impl<'de> Deserialize<'de> for BatchEmailValidationResponse
impl<'de> Deserialize<'de> for BatchEmailValidationResponse
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 BatchEmailValidationResponse
impl RefUnwindSafe for BatchEmailValidationResponse
impl Send for BatchEmailValidationResponse
impl Sync for BatchEmailValidationResponse
impl Unpin for BatchEmailValidationResponse
impl UnsafeUnpin for BatchEmailValidationResponse
impl UnwindSafe for BatchEmailValidationResponse
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