Struct ckb_script::TransactionState
source · pub struct TransactionState {
pub current: usize,
pub vm: Option<ResumableMachine>,
pub current_cycles: Cycle,
pub limit_cycles: Cycle,
}Expand description
Struct specifies which script has verified so far. State lifetime bound with vm machine.
Fields§
§current: usizecurrent suspended script index
vm: Option<ResumableMachine>vm state
current_cycles: Cyclecurrent consumed cycle
limit_cycles: Cyclelimit cycles
Implementations§
Trait Implementations§
source§impl Debug for TransactionState
impl Debug for TransactionState
Auto Trait Implementations§
impl !RefUnwindSafe for TransactionState
impl Send for TransactionState
impl Sync for TransactionState
impl Unpin for TransactionState
impl !UnwindSafe for TransactionState
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