Struct tasm_lib::ExecutionResult
source · pub struct ExecutionResult {
pub output: Vec<BFieldElement>,
pub final_stack: Vec<BFieldElement>,
pub final_ram: HashMap<BFieldElement, BFieldElement>,
pub cycle_count: usize,
pub hash_table_height: usize,
pub u32_table_height: usize,
}
Fields§
§output: Vec<BFieldElement>
§final_stack: Vec<BFieldElement>
§final_ram: HashMap<BFieldElement, BFieldElement>
§cycle_count: usize
§hash_table_height: usize
§u32_table_height: usize
Trait Implementations§
source§impl Clone for ExecutionResult
impl Clone for ExecutionResult
source§fn clone(&self) -> ExecutionResult
fn clone(&self) -> ExecutionResult
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 moreAuto Trait Implementations§
impl RefUnwindSafe for ExecutionResult
impl Send for ExecutionResult
impl Sync for ExecutionResult
impl Unpin for ExecutionResult
impl UnwindSafe for ExecutionResult
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