#[repr(u8)]pub enum AccountStanding {
Good = 0,
Fair = 1,
Poor = 2,
Restricted = 3,
Closed = 4,
}Expand description
Account standing type
Variants§
Good = 0
Account in good standing
Fair = 1
Account with minor issues
Poor = 2
Account with significant issues
Restricted = 3
Account restricted
Closed = 4
Account closed
Implementations§
Trait Implementations§
Source§impl Clone for AccountStanding
impl Clone for AccountStanding
Source§fn clone(&self) -> AccountStanding
fn clone(&self) -> AccountStanding
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 AccountStanding
impl Debug for AccountStanding
Source§impl<'de> Deserialize<'de> for AccountStanding
impl<'de> Deserialize<'de> for AccountStanding
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 AccountStanding
impl Hash for AccountStanding
Source§impl PartialEq for AccountStanding
impl PartialEq for AccountStanding
Source§fn eq(&self, other: &AccountStanding) -> bool
fn eq(&self, other: &AccountStanding) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AccountStanding
impl Serialize for AccountStanding
impl Copy for AccountStanding
impl Eq for AccountStanding
impl StructuralPartialEq for AccountStanding
Auto Trait Implementations§
impl Freeze for AccountStanding
impl RefUnwindSafe for AccountStanding
impl Send for AccountStanding
impl Sync for AccountStanding
impl Unpin for AccountStanding
impl UnsafeUnpin for AccountStanding
impl UnwindSafe for AccountStanding
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