pub struct ResponseData {
pub email_address: String,
pub domain: String,
pub valid_syntax: bool,
pub disposable: bool,
pub webmail: bool,
pub deliverable: bool,
pub catch_all: bool,
pub gibberish: bool,
pub spam: bool,
}
Expand description
Represents the data structure of the response from the email validation API.
Fields§
§email_address: String
§domain: String
§valid_syntax: bool
§disposable: bool
§webmail: bool
§deliverable: bool
§catch_all: bool
§gibberish: bool
§spam: bool
Trait Implementations§
Source§impl Debug for ResponseData
impl Debug for ResponseData
Source§impl<'de> Deserialize<'de> for ResponseData
impl<'de> Deserialize<'de> for ResponseData
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 ResponseData
impl RefUnwindSafe for ResponseData
impl Send for ResponseData
impl Sync for ResponseData
impl Unpin for ResponseData
impl UnwindSafe for ResponseData
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