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> Load<'a> for ComputePhase
impl<'a> Load<'a> 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 Store for ComputePhase
impl Store for ComputePhase
source§fn store_into(
&self,
builder: &mut CellBuilder,
finalizer: &mut dyn Finalizer
) -> Result<(), Error>
fn store_into( &self, builder: &mut CellBuilder, finalizer: &mut dyn Finalizer ) -> Result<(), Error>
Tries to store itself into the cell builder.
impl Eq for ComputePhase
impl StructuralEq for ComputePhase
impl StructuralPartialEq for ComputePhase
Auto Trait Implementations§
impl RefUnwindSafe for ComputePhase
impl Send for ComputePhase
impl Sync for ComputePhase
impl Unpin for ComputePhase
impl UnwindSafe for ComputePhase
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