pub trait IsDefault {
    // Required method
    fn is_default(&self) -> bool;
}
Expand description

This trait checks whether a variable equals to initialization value. For a variable equals to the initialization value, the world-state should treat is as None value.

Required Methods§

source

fn is_default(&self) -> bool

Implementations on Foreign Types§

source§

impl IsDefault for bool

source§

impl IsDefault for U256

Implementors§