#[non_exhaustive]pub enum GelatoEmailReportStatus {
Unverified,
Verified,
Unknown(String),
}Expand description
Status of this email check.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Unverified
Verified
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for GelatoEmailReportStatus
impl Clone for GelatoEmailReportStatus
Source§fn clone(&self) -> GelatoEmailReportStatus
fn clone(&self) -> GelatoEmailReportStatus
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 GelatoEmailReportStatus
impl Debug for GelatoEmailReportStatus
Source§impl Display for GelatoEmailReportStatus
impl Display for GelatoEmailReportStatus
Source§impl FromStr for GelatoEmailReportStatus
impl FromStr for GelatoEmailReportStatus
Source§impl FromValueOpt for GelatoEmailReportStatus
impl FromValueOpt for GelatoEmailReportStatus
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for GelatoEmailReportStatus
impl PartialEq for GelatoEmailReportStatus
impl Eq for GelatoEmailReportStatus
impl StructuralPartialEq for GelatoEmailReportStatus
Auto Trait Implementations§
impl Freeze for GelatoEmailReportStatus
impl RefUnwindSafe for GelatoEmailReportStatus
impl Send for GelatoEmailReportStatus
impl Sync for GelatoEmailReportStatus
impl Unpin for GelatoEmailReportStatus
impl UnwindSafe for GelatoEmailReportStatus
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