Enum ethcore::state::CleanupMode
[−]
[src]
pub enum CleanupMode<'a> {
ForceCreate,
NoEmpty,
TrackTouched(&'a mut HashSet<Address>),
}Mode of dealing with null accounts.
Variants
ForceCreateCreate accounts which would be null.
NoEmptyDon't delete null accounts upon touching, but also don't create them.
TrackTouched(&'a mut HashSet<Address>)Mark all touched accounts.
Trait Implementations
impl<'a> PartialEq for CleanupMode<'a>[src]
impl<'a> PartialEq for CleanupMode<'a>fn eq(&self, __arg_0: &CleanupMode<'a>) -> bool[src]
fn eq(&self, __arg_0: &CleanupMode<'a>) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &CleanupMode<'a>) -> bool[src]
fn ne(&self, __arg_0: &CleanupMode<'a>) -> boolThis method tests for !=.
Auto Trait Implementations
impl<'a> Send for CleanupMode<'a>
impl<'a> Send for CleanupMode<'a>impl<'a> Sync for CleanupMode<'a>
impl<'a> Sync for CleanupMode<'a>