pub struct FindEmailResponse {
pub email: String,
pub domain: String,
pub format: String,
pub status: String,
pub sub_status: String,
pub confidence: String,
pub did_you_mean: String,
pub failure_reason: String,
pub other_domain_formats: Vec<DomainFormats>,
}Fields§
§email: String§domain: String§format: String§status: String§sub_status: String§confidence: String§did_you_mean: String§failure_reason: String§other_domain_formats: Vec<DomainFormats>Trait Implementations§
Source§impl Clone for FindEmailResponse
impl Clone for FindEmailResponse
Source§fn clone(&self) -> FindEmailResponse
fn clone(&self) -> FindEmailResponse
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 FindEmailResponse
impl Debug for FindEmailResponse
Source§impl<'de> Deserialize<'de> for FindEmailResponse
impl<'de> Deserialize<'de> for FindEmailResponse
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 FindEmailResponse
impl RefUnwindSafe for FindEmailResponse
impl Send for FindEmailResponse
impl Sync for FindEmailResponse
impl Unpin for FindEmailResponse
impl UnwindSafe for FindEmailResponse
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