pub struct OpcodeProfile {
pub total_executed: u64,
/* private fields */
}Expand description
Counts how many times each opcode type was executed.
Fields§
§total_executed: u64Total instructions executed.
Implementations§
Trait Implementations§
Source§impl Clone for OpcodeProfile
impl Clone for OpcodeProfile
Source§fn clone(&self) -> OpcodeProfile
fn clone(&self) -> OpcodeProfile
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 OpcodeProfile
impl Debug for OpcodeProfile
Source§impl Default for OpcodeProfile
impl Default for OpcodeProfile
Source§fn default() -> OpcodeProfile
fn default() -> OpcodeProfile
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for OpcodeProfile
impl RefUnwindSafe for OpcodeProfile
impl Send for OpcodeProfile
impl Sync for OpcodeProfile
impl Unpin for OpcodeProfile
impl UnsafeUnpin for OpcodeProfile
impl UnwindSafe for OpcodeProfile
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