#[non_exhaustive]pub enum GelatoEmailReportErrorCode {
EmailUnverifiedOther,
EmailVerificationDeclined,
Unknown(String),
}Expand description
A short machine-readable string giving the reason for the verification failure.
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.
EmailUnverifiedOther
EmailVerificationDeclined
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for GelatoEmailReportErrorCode
impl Clone for GelatoEmailReportErrorCode
Source§fn clone(&self) -> GelatoEmailReportErrorCode
fn clone(&self) -> GelatoEmailReportErrorCode
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 GelatoEmailReportErrorCode
impl Debug for GelatoEmailReportErrorCode
Source§impl Display for GelatoEmailReportErrorCode
impl Display for GelatoEmailReportErrorCode
Source§impl FromStr for GelatoEmailReportErrorCode
impl FromStr for GelatoEmailReportErrorCode
Source§impl FromValueOpt for GelatoEmailReportErrorCode
impl FromValueOpt for GelatoEmailReportErrorCode
fn from_value(v: Value) -> Option<Self>
impl Eq for GelatoEmailReportErrorCode
impl StructuralPartialEq for GelatoEmailReportErrorCode
Auto Trait Implementations§
impl Freeze for GelatoEmailReportErrorCode
impl RefUnwindSafe for GelatoEmailReportErrorCode
impl Send for GelatoEmailReportErrorCode
impl Sync for GelatoEmailReportErrorCode
impl Unpin for GelatoEmailReportErrorCode
impl UnwindSafe for GelatoEmailReportErrorCode
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