#[non_exhaustive]pub enum IdentityVerificationSessionType {
Document,
IdNumber,
VerificationFlow,
Unknown(String),
}Expand description
The type of verification check to be performed.
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.
Document
IdNumber
VerificationFlow
Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter.
Implementations§
Trait Implementations§
Source§impl Clone for IdentityVerificationSessionType
impl Clone for IdentityVerificationSessionType
Source§fn clone(&self) -> IdentityVerificationSessionType
fn clone(&self) -> IdentityVerificationSessionType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IdentityVerificationSessionType
Available on non-crate feature redact-generated-debug only.
impl Debug for IdentityVerificationSessionType
Available on non-crate feature
redact-generated-debug only.impl Eq for IdentityVerificationSessionType
Source§impl FromValueOpt for IdentityVerificationSessionType
impl FromValueOpt for IdentityVerificationSessionType
fn from_value(v: Value) -> Option<Self>
impl StructuralPartialEq for IdentityVerificationSessionType
Auto Trait Implementations§
impl Freeze for IdentityVerificationSessionType
impl RefUnwindSafe for IdentityVerificationSessionType
impl Send for IdentityVerificationSessionType
impl Sync for IdentityVerificationSessionType
impl Unpin for IdentityVerificationSessionType
impl UnsafeUnpin for IdentityVerificationSessionType
impl UnwindSafe for IdentityVerificationSessionType
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