#[non_exhaustive]pub enum GelatoPhoneReportStatus {
Unverified,
Verified,
Unknown(String),
}Expand description
Status of this phone 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 GelatoPhoneReportStatus
impl Clone for GelatoPhoneReportStatus
Source§fn clone(&self) -> GelatoPhoneReportStatus
fn clone(&self) -> GelatoPhoneReportStatus
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 GelatoPhoneReportStatus
impl Debug for GelatoPhoneReportStatus
Source§impl Display for GelatoPhoneReportStatus
impl Display for GelatoPhoneReportStatus
Source§impl FromStr for GelatoPhoneReportStatus
impl FromStr for GelatoPhoneReportStatus
Source§impl FromValueOpt for GelatoPhoneReportStatus
impl FromValueOpt for GelatoPhoneReportStatus
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for GelatoPhoneReportStatus
impl PartialEq for GelatoPhoneReportStatus
impl Eq for GelatoPhoneReportStatus
impl StructuralPartialEq for GelatoPhoneReportStatus
Auto Trait Implementations§
impl Freeze for GelatoPhoneReportStatus
impl RefUnwindSafe for GelatoPhoneReportStatus
impl Send for GelatoPhoneReportStatus
impl Sync for GelatoPhoneReportStatus
impl Unpin for GelatoPhoneReportStatus
impl UnwindSafe for GelatoPhoneReportStatus
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