Enum everscale_types::models::transaction::ComputePhase
source · pub enum ComputePhase {
Skipped(SkippedComputePhase),
Executed(ExecutedComputePhase),
}Expand description
Compute phase info.
At this phase the VM is executed to produce a list of actions.
Variants§
Skipped(SkippedComputePhase)
Compute phase was skipped.
Executed(ExecutedComputePhase)
Compute phase was executed.
Trait Implementations§
source§impl Clone for ComputePhase
impl Clone for ComputePhase
source§fn clone(&self) -> ComputePhase
fn clone(&self) -> ComputePhase
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 ComputePhase
impl Debug for ComputePhase
source§impl<'a, C: CellFamily> Load<'a, C> for ComputePhase
impl<'a, C: CellFamily> Load<'a, C> for ComputePhase
source§impl PartialEq<ComputePhase> for ComputePhase
impl PartialEq<ComputePhase> for ComputePhase
source§fn eq(&self, other: &ComputePhase) -> bool
fn eq(&self, other: &ComputePhase) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<C: CellFamily> Store<C> for ComputePhase
impl<C: CellFamily> Store<C> for ComputePhase
source§fn store_into(
&self,
builder: &mut CellBuilder<C>,
finalizer: &mut dyn Finalizer<C>
) -> bool
fn store_into( &self, builder: &mut CellBuilder<C>, finalizer: &mut dyn Finalizer<C> ) -> bool
Tries to store itself into the cell builder.