#[non_exhaustive]pub enum GelatoVerifiedOutputsSex {
Redacted,
Female,
Male,
Unknown,
_Unknown(String),
}Expand description
The user’s verified sex.
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.
Redacted
Female
Male
Unknown
_Unknown(String)
An unrecognized value from Stripe. Should not be used as a request parameter. This variant is prefixed with an underscore to avoid conflicts with Stripe’s ‘Unknown’ variant.
Implementations§
Trait Implementations§
Source§impl Clone for GelatoVerifiedOutputsSex
impl Clone for GelatoVerifiedOutputsSex
Source§fn clone(&self) -> GelatoVerifiedOutputsSex
fn clone(&self) -> GelatoVerifiedOutputsSex
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 GelatoVerifiedOutputsSex
impl Debug for GelatoVerifiedOutputsSex
Source§impl Display for GelatoVerifiedOutputsSex
impl Display for GelatoVerifiedOutputsSex
Source§impl FromStr for GelatoVerifiedOutputsSex
impl FromStr for GelatoVerifiedOutputsSex
Source§impl FromValueOpt for GelatoVerifiedOutputsSex
impl FromValueOpt for GelatoVerifiedOutputsSex
fn from_value(v: Value) -> Option<Self>
Source§impl PartialEq for GelatoVerifiedOutputsSex
impl PartialEq for GelatoVerifiedOutputsSex
impl Eq for GelatoVerifiedOutputsSex
impl StructuralPartialEq for GelatoVerifiedOutputsSex
Auto Trait Implementations§
impl Freeze for GelatoVerifiedOutputsSex
impl RefUnwindSafe for GelatoVerifiedOutputsSex
impl Send for GelatoVerifiedOutputsSex
impl Sync for GelatoVerifiedOutputsSex
impl Unpin for GelatoVerifiedOutputsSex
impl UnwindSafe for GelatoVerifiedOutputsSex
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