pub enum AccountStatusChange {
Unchanged,
Frozen,
Deleted,
}Expand description
Account status change during transaction execution.
Variants§
Trait Implementations§
source§impl Clone for AccountStatusChange
impl Clone for AccountStatusChange
source§fn clone(&self) -> AccountStatusChange
fn clone(&self) -> AccountStatusChange
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 AccountStatusChange
impl Debug for AccountStatusChange
source§impl<'a, C: CellFamily> Load<'a, C> for AccountStatusChange
impl<'a, C: CellFamily> Load<'a, C> for AccountStatusChange
source§impl PartialEq<AccountStatusChange> for AccountStatusChange
impl PartialEq<AccountStatusChange> for AccountStatusChange
source§fn eq(&self, other: &AccountStatusChange) -> bool
fn eq(&self, other: &AccountStatusChange) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for AccountStatusChange
impl<C: CellFamily> Store<C> for AccountStatusChange
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.