pub struct EmailInfo {
pub email: String,
pub is_disposable: bool,
pub has_mx_records: bool,
pub mx_records: Vec<MxRecord>,
pub syntax: EmailSyntax,
}Fields§
§email: String§is_disposable: bool§has_mx_records: bool§mx_records: Vec<MxRecord>§syntax: EmailSyntaxTrait Implementations§
Source§impl<'de> Deserialize<'de> for EmailInfo
impl<'de> Deserialize<'de> for EmailInfo
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 EmailInfo
impl RefUnwindSafe for EmailInfo
impl Send for EmailInfo
impl Sync for EmailInfo
impl Unpin for EmailInfo
impl UnsafeUnpin for EmailInfo
impl UnwindSafe for EmailInfo
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