pub enum AccountEnumStatus {
Active,
Suspended,
Closed,
}
Expand description
Variants§
Trait Implementations§
source§impl Clone for AccountEnumStatus
impl Clone for AccountEnumStatus
source§fn clone(&self) -> AccountEnumStatus
fn clone(&self) -> AccountEnumStatus
Returns a copy 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 AccountEnumStatus
impl Debug for AccountEnumStatus
source§impl Default for AccountEnumStatus
impl Default for AccountEnumStatus
source§fn default() -> AccountEnumStatus
fn default() -> AccountEnumStatus
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AccountEnumStatus
impl<'de> Deserialize<'de> for AccountEnumStatus
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
source§impl Hash for AccountEnumStatus
impl Hash for AccountEnumStatus
source§impl Ord for AccountEnumStatus
impl Ord for AccountEnumStatus
source§fn cmp(&self, other: &AccountEnumStatus) -> Ordering
fn cmp(&self, other: &AccountEnumStatus) -> Ordering
1.21.0 · 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<AccountEnumStatus> for AccountEnumStatus
impl PartialEq<AccountEnumStatus> for AccountEnumStatus
source§fn eq(&self, other: &AccountEnumStatus) -> bool
fn eq(&self, other: &AccountEnumStatus) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd<AccountEnumStatus> for AccountEnumStatus
impl PartialOrd<AccountEnumStatus> for AccountEnumStatus
source§fn partial_cmp(&self, other: &AccountEnumStatus) -> Option<Ordering>
fn partial_cmp(&self, other: &AccountEnumStatus) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moresource§impl Serialize for AccountEnumStatus
impl Serialize for AccountEnumStatus
source§impl ToString for AccountEnumStatus
impl ToString for AccountEnumStatus
impl Copy for AccountEnumStatus
impl Eq for AccountEnumStatus
impl StructuralEq for AccountEnumStatus
impl StructuralPartialEq for AccountEnumStatus
Auto Trait Implementations§
impl RefUnwindSafe for AccountEnumStatus
impl Send for AccountEnumStatus
impl Sync for AccountEnumStatus
impl Unpin for AccountEnumStatus
impl UnwindSafe for AccountEnumStatus
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.