Enum spl_token_2022::state::AccountState
source · #[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 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 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 From<AccountState> for u8
impl From<AccountState> for u8
source§fn from(enum_value: AccountState) -> Self
fn from(enum_value: AccountState) -> Self
Converts to this type from the input type.
source§impl PartialEq for AccountState
impl PartialEq for AccountState
source§fn eq(&self, other: &AccountState) -> bool
fn eq(&self, other: &AccountState) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl TryFrom<u8> for AccountState
impl TryFrom<u8> for AccountState
§type Error = TryFromPrimitiveError<AccountState>
type Error = TryFromPrimitiveError<AccountState>
The type returned in the event of a conversion error.
source§impl TryFromPrimitive for AccountState
impl TryFromPrimitive for AccountState
type Primitive = u8
type Error = TryFromPrimitiveError<AccountState>
const NAME: &'static str = "AccountState"
fn try_from_primitive( number: Self::Primitive, ) -> Result<Self, TryFromPrimitiveError<Self>>
impl Copy for AccountState
impl StructuralPartialEq for 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 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
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more