Enum cfx_vm_types::CleanDustMode
source · pub enum CleanDustMode {
Off,
BasicOnly,
WithCodeAndStorage,
}
Expand description
Dust accounts cleanup mode.
Variants§
Off
Dust cleanup is disabled.
BasicOnly
Basic dust accounts will be removed.
WithCodeAndStorage
Basic and contract dust accounts will be removed.
Trait Implementations§
source§impl Clone for CleanDustMode
impl Clone for CleanDustMode
source§fn clone(&self) -> CleanDustMode
fn clone(&self) -> CleanDustMode
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 CleanDustMode
impl Debug for CleanDustMode
source§impl PartialEq for CleanDustMode
impl PartialEq for CleanDustMode
source§fn eq(&self, other: &CleanDustMode) -> bool
fn eq(&self, other: &CleanDustMode) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for CleanDustMode
impl StructuralPartialEq for CleanDustMode
Auto Trait Implementations§
impl RefUnwindSafe for CleanDustMode
impl Send for CleanDustMode
impl Sync for CleanDustMode
impl Unpin for CleanDustMode
impl UnwindSafe for CleanDustMode
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