Struct triton_vm::program::VMTableHeights
source · #[non_exhaustive]pub struct VMTableHeights {
pub processor: u32,
pub op_stack: u32,
pub ram: u32,
pub hash: u32,
pub u32: u32,
}Expand description
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.processor: u32§op_stack: u32§ram: u32§hash: u32§u32: u32Trait Implementations§
source§impl Add for VMTableHeights
impl Add for VMTableHeights
source§impl AddAssign for VMTableHeights
impl AddAssign for VMTableHeights
source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moresource§impl<'arbitrary> Arbitrary<'arbitrary> for VMTableHeights
impl<'arbitrary> Arbitrary<'arbitrary> for VMTableHeights
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 VMTableHeights
impl Clone for VMTableHeights
source§fn clone(&self) -> VMTableHeights
fn clone(&self) -> VMTableHeights
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 VMTableHeights
impl Debug for VMTableHeights
source§impl Default for VMTableHeights
impl Default for VMTableHeights
source§fn default() -> VMTableHeights
fn default() -> VMTableHeights
Returns the “default value” for a type. Read more
source§impl Hash for VMTableHeights
impl Hash for VMTableHeights
source§impl PartialEq for VMTableHeights
impl PartialEq for VMTableHeights
source§fn eq(&self, other: &VMTableHeights) -> bool
fn eq(&self, other: &VMTableHeights) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Sub for VMTableHeights
impl Sub for VMTableHeights
impl Copy for VMTableHeights
impl Eq for VMTableHeights
impl StructuralPartialEq for VMTableHeights
Auto Trait Implementations§
impl Freeze for VMTableHeights
impl RefUnwindSafe for VMTableHeights
impl Send for VMTableHeights
impl Sync for VMTableHeights
impl Unpin for VMTableHeights
impl UnwindSafe for VMTableHeights
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