pub struct ExecuteDetailsTimings {
Show 14 fields pub serialize_us: u64, pub create_vm_us: u64, pub execute_us: u64, pub deserialize_us: u64, pub get_or_create_executor_us: u64, pub changed_account_count: u64, pub total_account_count: u64, pub total_data_size: usize, pub data_size_changed: usize, pub create_executor_register_syscalls_us: u64, pub create_executor_load_elf_us: u64, pub create_executor_verify_code_us: u64, pub create_executor_jit_compile_us: u64, pub per_program_timings: HashMap<Pubkey, ProgramTiming>,
}

Fields

serialize_us: u64create_vm_us: u64execute_us: u64deserialize_us: u64get_or_create_executor_us: u64changed_account_count: u64total_account_count: u64total_data_size: usizedata_size_changed: usizecreate_executor_register_syscalls_us: u64create_executor_load_elf_us: u64create_executor_verify_code_us: u64create_executor_jit_compile_us: u64per_program_timings: HashMap<Pubkey, ProgramTiming>

Implementations

Trait Implementations

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.