pub enum StripeCryptoCustomerActiveStatus {
Active,
}Expand description
StripeCryptoCustomerActiveStatus
JSON schema
{
"type": "string",
"enum": [
"active"
]
}Variants§
Active
Trait Implementations§
Source§impl Clone for StripeCryptoCustomerActiveStatus
impl Clone for StripeCryptoCustomerActiveStatus
Source§fn clone(&self) -> StripeCryptoCustomerActiveStatus
fn clone(&self) -> StripeCryptoCustomerActiveStatus
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 moreimpl Copy for StripeCryptoCustomerActiveStatus
Source§impl<'de> Deserialize<'de> for StripeCryptoCustomerActiveStatus
impl<'de> Deserialize<'de> for StripeCryptoCustomerActiveStatus
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for StripeCryptoCustomerActiveStatus
Source§impl From<&StripeCryptoCustomerActiveStatus> for StripeCryptoCustomerActiveStatus
impl From<&StripeCryptoCustomerActiveStatus> for StripeCryptoCustomerActiveStatus
Source§fn from(value: &StripeCryptoCustomerActiveStatus) -> Self
fn from(value: &StripeCryptoCustomerActiveStatus) -> Self
Converts to this type from the input type.
Source§impl Ord for StripeCryptoCustomerActiveStatus
impl Ord for StripeCryptoCustomerActiveStatus
Source§fn cmp(&self, other: &StripeCryptoCustomerActiveStatus) -> Ordering
fn cmp(&self, other: &StripeCryptoCustomerActiveStatus) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for StripeCryptoCustomerActiveStatus
impl PartialEq for StripeCryptoCustomerActiveStatus
Source§fn eq(&self, other: &StripeCryptoCustomerActiveStatus) -> bool
fn eq(&self, other: &StripeCryptoCustomerActiveStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for StripeCryptoCustomerActiveStatus
impl PartialOrd for StripeCryptoCustomerActiveStatus
impl StructuralPartialEq for StripeCryptoCustomerActiveStatus
Source§impl TryFrom<&String> for StripeCryptoCustomerActiveStatus
impl TryFrom<&String> for StripeCryptoCustomerActiveStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<&str> for StripeCryptoCustomerActiveStatus
impl TryFrom<&str> for StripeCryptoCustomerActiveStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§impl TryFrom<String> for StripeCryptoCustomerActiveStatus
impl TryFrom<String> for StripeCryptoCustomerActiveStatus
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Auto Trait Implementations§
impl Freeze for StripeCryptoCustomerActiveStatus
impl RefUnwindSafe for StripeCryptoCustomerActiveStatus
impl Send for StripeCryptoCustomerActiveStatus
impl Sync for StripeCryptoCustomerActiveStatus
impl Unpin for StripeCryptoCustomerActiveStatus
impl UnsafeUnpin for StripeCryptoCustomerActiveStatus
impl UnwindSafe for StripeCryptoCustomerActiveStatus
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