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<'de> Deserialize<'de> for AccountStatusChange
impl<'de> Deserialize<'de> for AccountStatusChange
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
source§impl<'a> Load<'a> for AccountStatusChange
impl<'a> Load<'a> 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 Serialize for AccountStatusChange
impl Serialize for AccountStatusChange
source§impl Store for AccountStatusChange
impl Store for AccountStatusChange
source§fn store_into(
&self,
builder: &mut CellBuilder,
_: &mut dyn Finalizer
) -> Result<(), Error>
fn store_into( &self, builder: &mut CellBuilder, _: &mut dyn Finalizer ) -> Result<(), Error>
Tries to store itself into the cell builder.
impl Copy for AccountStatusChange
impl Eq for AccountStatusChange
impl StructuralEq for AccountStatusChange
impl StructuralPartialEq for AccountStatusChange
Auto Trait Implementations§
impl RefUnwindSafe for AccountStatusChange
impl Send for AccountStatusChange
impl Sync for AccountStatusChange
impl Unpin for AccountStatusChange
impl UnwindSafe for AccountStatusChange
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