pub struct EvmCodeStats {
pub functions: usize,
pub events: usize,
pub modifiers: usize,
pub storage_vars: usize,
pub bytecode_size: usize,
}Expand description
EVM code statistics
Fields§
§functions: usize§events: usize§modifiers: usize§storage_vars: usize§bytecode_size: usizeTrait Implementations§
Source§impl Clone for EvmCodeStats
impl Clone for EvmCodeStats
Source§fn clone(&self) -> EvmCodeStats
fn clone(&self) -> EvmCodeStats
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 EvmCodeStats
impl Debug for EvmCodeStats
Source§impl Default for EvmCodeStats
impl Default for EvmCodeStats
Source§fn default() -> EvmCodeStats
fn default() -> EvmCodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for EvmCodeStats
impl RefUnwindSafe for EvmCodeStats
impl Send for EvmCodeStats
impl Sync for EvmCodeStats
impl Unpin for EvmCodeStats
impl UnsafeUnpin for EvmCodeStats
impl UnwindSafe for EvmCodeStats
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