Enum evm::backend::Apply  [−][src]
pub enum Apply<I> {
    Modify {
        address: H160,
        basic: Basic,
        code: Option<Vec<u8>>,
        storage: I,
        reset_storage: bool,
    },
    Delete {
        address: H160,
    },
}Expand description
Apply state operation.
Variants
Modify or create at address.
Fields of Modify
Delete address.
Fields of Delete
address: H160Address.
Trait Implementations
Auto Trait Implementations
impl<I> RefUnwindSafe for Apply<I> where
    I: RefUnwindSafe, 
impl<I> UnwindSafe for Apply<I> where
    I: UnwindSafe, 
Blanket Implementations
Mutably borrows from an owned value. Read more