Enum everscale_types::models::account::AccountStatus
source · pub enum AccountStatus {
Uninit,
Frozen,
Active,
NotExists,
}Expand description
Brief account status.
Variants§
Uninit
Account exists but has not yet been deployed.
Frozen
Account exists but has been frozen.
Active
Account exists and has been deployed.
NotExists
Account does not exist.
Implementations§
Trait Implementations§
source§impl Clone for AccountStatus
impl Clone for AccountStatus
source§fn clone(&self) -> AccountStatus
fn clone(&self) -> AccountStatus
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 AccountStatus
impl Debug for AccountStatus
source§impl<'a, C: CellFamily> Load<'a, C> for AccountStatus
impl<'a, C: CellFamily> Load<'a, C> for AccountStatus
source§impl PartialEq<AccountStatus> for AccountStatus
impl PartialEq<AccountStatus> for AccountStatus
source§fn eq(&self, other: &AccountStatus) -> bool
fn eq(&self, other: &AccountStatus) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for AccountStatus
impl<C: CellFamily> Store<C> for AccountStatus
source§fn store_into(
&self,
builder: &mut CellBuilder<C>,
_: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, builder: &mut CellBuilder<C>, _: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.