Struct triton_vm::program::VMProfilingReport
source · pub struct VMProfilingReport {
pub total: VMTableHeights,
pub profile: Vec<ProfileLine>,
}Expand description
Fields§
§total: VMTableHeights§profile: Vec<ProfileLine>Trait Implementations§
source§impl<'arbitrary> Arbitrary<'arbitrary> for VMProfilingReport
impl<'arbitrary> Arbitrary<'arbitrary> for VMProfilingReport
source§fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary(u: &mut Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the given unstructured data. Read moresource§fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
fn arbitrary_take_rest(u: Unstructured<'arbitrary>) -> Result<Self>
Generate an arbitrary value of
Self from the entirety of the given
unstructured data. Read moresource§impl Clone for VMProfilingReport
impl Clone for VMProfilingReport
source§fn clone(&self) -> VMProfilingReport
fn clone(&self) -> VMProfilingReport
Returns a copy 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 VMProfilingReport
impl Debug for VMProfilingReport
source§impl Display for VMProfilingReport
impl Display for VMProfilingReport
source§impl Hash for VMProfilingReport
impl Hash for VMProfilingReport
source§impl PartialEq for VMProfilingReport
impl PartialEq for VMProfilingReport
source§fn eq(&self, other: &VMProfilingReport) -> bool
fn eq(&self, other: &VMProfilingReport) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for VMProfilingReport
impl StructuralPartialEq for VMProfilingReport
Auto Trait Implementations§
impl Freeze for VMProfilingReport
impl RefUnwindSafe for VMProfilingReport
impl Send for VMProfilingReport
impl Sync for VMProfilingReport
impl Unpin for VMProfilingReport
impl UnwindSafe for VMProfilingReport
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
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more