#[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: u32
Trait 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§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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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