pub enum IsDisabled {
Value1 = 1,
Value0 = 2,
}
Expand description
Boolean value: 1 or 0, indicating whether the account is marked as disabled or not.
Variants§
Trait Implementations§
Source§impl Clone for IsDisabled
impl Clone for IsDisabled
Source§fn clone(&self) -> IsDisabled
fn clone(&self) -> IsDisabled
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 IsDisabled
impl Debug for IsDisabled
Source§impl<'de> Deserialize<'de> for IsDisabled
impl<'de> Deserialize<'de> for IsDisabled
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
Auto Trait Implementations§
impl Freeze for IsDisabled
impl RefUnwindSafe for IsDisabled
impl Send for IsDisabled
impl Sync for IsDisabled
impl Unpin for IsDisabled
impl UnwindSafe for IsDisabled
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