pub struct GelatoEmailReport {
pub email: Option<String>,
pub error: Option<GelatoEmailReportError>,
pub status: GelatoEmailReportStatus,
}
Expand description
Result from a email check
Fields§
§email: Option<String>
Email to be verified.
error: Option<GelatoEmailReportError>
Details on the verification error. Present when status is unverified
.
status: GelatoEmailReportStatus
Status of this email
check.
Trait Implementations§
Source§impl Clone for GelatoEmailReport
impl Clone for GelatoEmailReport
Source§fn clone(&self) -> GelatoEmailReport
fn clone(&self) -> GelatoEmailReport
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 GelatoEmailReport
impl Debug for GelatoEmailReport
Source§impl Deserialize for GelatoEmailReport
impl Deserialize for GelatoEmailReport
Source§impl FromValueOpt for GelatoEmailReport
impl FromValueOpt for GelatoEmailReport
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for GelatoEmailReport
impl RefUnwindSafe for GelatoEmailReport
impl Send for GelatoEmailReport
impl Sync for GelatoEmailReport
impl Unpin for GelatoEmailReport
impl UnwindSafe for GelatoEmailReport
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