pub struct U32TableEntry {
pub instruction: Instruction,
pub left_operand: BFieldElement,
pub right_operand: BFieldElement,
}
Expand description
An executed u32 instruction as well as its operands.
Fields§
§instruction: Instruction
§left_operand: BFieldElement
§right_operand: BFieldElement
Implementations§
Source§impl U32TableEntry
impl U32TableEntry
pub fn new<L, R>( instruction: Instruction, left_operand: L, right_operand: R, ) -> Self
Trait Implementations§
Source§impl<'arbitrary> Arbitrary<'arbitrary> for U32TableEntry
impl<'arbitrary> Arbitrary<'arbitrary> for U32TableEntry
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 U32TableEntry
impl Clone for U32TableEntry
Source§fn clone(&self) -> U32TableEntry
fn clone(&self) -> U32TableEntry
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 U32TableEntry
impl Debug for U32TableEntry
Source§impl Hash for U32TableEntry
impl Hash for U32TableEntry
Source§impl Ord for U32TableEntry
impl Ord for U32TableEntry
Source§impl PartialEq for U32TableEntry
impl PartialEq for U32TableEntry
Source§impl PartialOrd for U32TableEntry
impl PartialOrd for U32TableEntry
impl Copy for U32TableEntry
impl Eq for U32TableEntry
impl StructuralPartialEq for U32TableEntry
Auto Trait Implementations§
impl Freeze for U32TableEntry
impl RefUnwindSafe for U32TableEntry
impl Send for U32TableEntry
impl Sync for U32TableEntry
impl Unpin for U32TableEntry
impl UnwindSafe for U32TableEntry
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> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
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