pub struct FindEmailResponseV2 {
pub email: String,
pub domain: String,
pub confidence: String,
pub company_name: String,
pub did_you_mean: String,
pub failure_reason: String,
}Expand description
Response structure for the new find_email_v2 API endpoint.
This structure matches the new API response format which includes
email_confidence and company_name fields.
Fields§
§email: String§domain: String§confidence: String§company_name: String§did_you_mean: String§failure_reason: StringTrait Implementations§
Source§impl Clone for FindEmailResponseV2
impl Clone for FindEmailResponseV2
Source§fn clone(&self) -> FindEmailResponseV2
fn clone(&self) -> FindEmailResponseV2
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 FindEmailResponseV2
impl Debug for FindEmailResponseV2
Source§impl<'de> Deserialize<'de> for FindEmailResponseV2
impl<'de> Deserialize<'de> for FindEmailResponseV2
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 FindEmailResponseV2
impl RefUnwindSafe for FindEmailResponseV2
impl Send for FindEmailResponseV2
impl Sync for FindEmailResponseV2
impl Unpin for FindEmailResponseV2
impl UnwindSafe for FindEmailResponseV2
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