Enum ethcore::state::CleanupMode[][src]

pub enum CleanupMode<'a> {
    ForceCreate,
    NoEmpty,
    TrackTouched(&'a mut HashSet<Address>),
}

Mode of dealing with null accounts.

Variants

Create accounts which would be null.

Don't delete null accounts upon touching, but also don't create them.

Mark all touched accounts.

Trait Implementations

impl<'a> PartialEq for CleanupMode<'a>
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl<'a> Send for CleanupMode<'a>

impl<'a> Sync for CleanupMode<'a>