pub struct EvmStackDepth {
pub current: i32,
pub max: i32,
pub min: i32,
}Expand description
EVM stack depth tracker
Fields§
§current: i32§max: i32§min: i32Implementations§
Trait Implementations§
Source§impl Clone for EvmStackDepth
impl Clone for EvmStackDepth
Source§fn clone(&self) -> EvmStackDepth
fn clone(&self) -> EvmStackDepth
Returns a duplicate 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 EvmStackDepth
impl Debug for EvmStackDepth
Source§impl Default for EvmStackDepth
impl Default for EvmStackDepth
Source§fn default() -> EvmStackDepth
fn default() -> EvmStackDepth
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvmStackDepth
impl RefUnwindSafe for EvmStackDepth
impl Send for EvmStackDepth
impl Sync for EvmStackDepth
impl Unpin for EvmStackDepth
impl UnsafeUnpin for EvmStackDepth
impl UnwindSafe for EvmStackDepth
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