#[repr(u8)]pub enum AccountState {
Uninitialized = 0,
Initialized = 1,
Frozen = 2,
}Expand description
Account state.
Variants§
Uninitialized = 0
Account is not yet initialized
Initialized = 1
Account is initialized; the account owner and/or delegate may perform permitted operations on this account
Frozen = 2
Account has been frozen by the mint freeze authority. Neither the account owner nor the delegate are able to perform operations on this account.
Trait Implementations§
Source§impl Clone for AccountState
impl Clone for AccountState
Source§fn clone(&self) -> AccountState
fn clone(&self) -> AccountState
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 AccountState
Source§impl Debug for AccountState
impl Debug for AccountState
Source§impl Default for AccountState
impl Default for AccountState
Source§fn default() -> AccountState
fn default() -> AccountState
Returns the “default value” for a type. Read more
Source§impl PartialEq for AccountState
impl PartialEq for AccountState
Source§fn eq(&self, other: &AccountState) -> bool
fn eq(&self, other: &AccountState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AccountState
Source§impl TryFrom<u8> for AccountState
impl TryFrom<u8> for AccountState
Source§type Error = TryFromPrimitiveError<AccountState>
type Error = TryFromPrimitiveError<AccountState>
The type returned in the event of a conversion error.
Source§fn try_from(
number: u8,
) -> Result<AccountState, TryFromPrimitiveError<AccountState>>
fn try_from( number: u8, ) -> Result<AccountState, TryFromPrimitiveError<AccountState>>
Performs the conversion.
Source§impl TryFromPrimitive for AccountState
impl TryFromPrimitive for AccountState
const NAME: &'static str = "AccountState"
type Primitive = u8
type Error = TryFromPrimitiveError<AccountState>
fn try_from_primitive( number: <AccountState as TryFromPrimitive>::Primitive, ) -> Result<AccountState, TryFromPrimitiveError<AccountState>>
Auto Trait Implementations§
impl Freeze for AccountState
impl RefUnwindSafe for AccountState
impl Send for AccountState
impl Sync for AccountState
impl Unpin for AccountState
impl UnsafeUnpin for AccountState
impl UnwindSafe for AccountState
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