pub struct TickTockTxInfo {
pub kind: TickTock,
pub storage_phase: StoragePhase,
pub compute_phase: ComputePhase,
pub action_phase: Option<ActionPhase>,
pub aborted: bool,
pub destroyed: bool,
}Expand description
Tick-tock transaction info.
Fields§
§kind: TickTockTick-tock transaction execution edge.
storage_phase: StoragePhaseStorage phase info.
compute_phase: ComputePhaseCompute phase info.
action_phase: Option<ActionPhase>Action phase info.
Skipped if the transaction was aborted at the compute phase.
aborted: boolWhether the transaction was reverted.
destroyed: boolWhether the account was destroyed during this transaction.
Trait Implementations§
Source§impl Clone for TickTockTxInfo
impl Clone for TickTockTxInfo
Source§fn clone(&self) -> TickTockTxInfo
fn clone(&self) -> TickTockTxInfo
Returns a duplicate 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 TickTockTxInfo
impl Debug for TickTockTxInfo
Source§impl<'de> Deserialize<'de> for TickTockTxInfo
impl<'de> Deserialize<'de> for TickTockTxInfo
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<'a> Load<'a> for TickTockTxInfo
impl<'a> Load<'a> for TickTockTxInfo
Source§impl PartialEq for TickTockTxInfo
impl PartialEq for TickTockTxInfo
Source§impl Serialize for TickTockTxInfo
impl Serialize for TickTockTxInfo
Source§impl Store for TickTockTxInfo
impl Store for TickTockTxInfo
Source§fn store_into(
&self,
builder: &mut CellBuilder,
context: &mut dyn CellContext,
) -> Result<(), Error>
fn store_into( &self, builder: &mut CellBuilder, context: &mut dyn CellContext, ) -> Result<(), Error>
Tries to store itself into the cell builder.
impl Eq for TickTockTxInfo
impl StructuralPartialEq for TickTockTxInfo
Auto Trait Implementations§
impl Freeze for TickTockTxInfo
impl RefUnwindSafe for TickTockTxInfo
impl Send for TickTockTxInfo
impl Sync for TickTockTxInfo
impl Unpin for TickTockTxInfo
impl UnwindSafe for TickTockTxInfo
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§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
Compares
self to key and returns true if they are equal.