pub struct TxVMHooksContext<S: InstanceState> { /* private fields */ }
Implementations§
Source§impl<S: InstanceState> TxVMHooksContext<S>
impl<S: InstanceState> TxVMHooksContext<S>
pub fn new(tx_context_ref: TxContextRef, instance_state_ref: S) -> Self
Trait Implementations§
Source§impl<S: InstanceState> Debug for TxVMHooksContext<S>
impl<S: InstanceState> Debug for TxVMHooksContext<S>
Source§impl<S: InstanceState> VMHooksContext for TxVMHooksContext<S>
impl<S: InstanceState> VMHooksContext for TxVMHooksContext<S>
Source§unsafe fn memory_load(&self, offset: MemPtr, length: MemLength) -> Vec<u8> ⓘ
unsafe fn memory_load(&self, offset: MemPtr, length: MemLength) -> Vec<u8> ⓘ
Loads a slice of memory from the instance. Read more
Source§unsafe fn memory_store(&self, mem_ptr: MemPtr, data: &[u8])
unsafe fn memory_store(&self, mem_ptr: MemPtr, data: &[u8])
Writes to instance memory. Read more
fn m_types_lock(&self) -> MutexGuard<'_, ManagedTypeContainer>
fn gas_schedule(&self) -> &GasSchedule
fn use_gas(&mut self, gas: u64) -> Result<(), VMHooksEarlyExit>
fn input_ref(&self) -> &TxInput
Source§fn random_next_bytes(&self, length: usize) -> Vec<u8> ⓘ
fn random_next_bytes(&self, length: usize) -> Vec<u8> ⓘ
Random number generator, based on the blockchain randomness source.
fn result_lock(&self) -> MutexGuard<'_, TxResult>
fn storage_read_any_address(&self, address: &VMAddress, key: &[u8]) -> Vec<u8> ⓘ
fn storage_write( &mut self, key: &[u8], value: &[u8], ) -> Result<(), VMHooksEarlyExit>
fn get_block_config(&self) -> &BlockConfig
fn back_transfers_lock(&self) -> MutexGuard<'_, BackTransfers>
Source§fn account_data(&self, address: &VMAddress) -> Option<AccountData>
fn account_data(&self, address: &VMAddress) -> Option<AccountData>
For ownership reasons, needs to return a clone. Read more
fn account_code(&self, address: &VMAddress) -> Vec<u8> ⓘ
fn perform_async_call( &mut self, to: VMAddress, egld_value: BigUint, func_name: TxFunctionName, arguments: Vec<Vec<u8>>, ) -> Result<(), VMHooksEarlyExit>
fn perform_execute_on_dest_context( &mut self, to: VMAddress, egld_value: BigUint, func_name: TxFunctionName, arguments: Vec<Vec<u8>>, ) -> Result<Vec<Vec<u8>>, VMHooksEarlyExit>
fn perform_execute_on_dest_context_readonly( &mut self, to: VMAddress, func_name: TxFunctionName, arguments: Vec<Vec<u8>>, ) -> Result<Vec<Vec<u8>>, VMHooksEarlyExit>
fn perform_deploy( &mut self, egld_value: BigUint, contract_code: Vec<u8>, code_metadata: VMCodeMetadata, args: Vec<Vec<u8>>, ) -> Result<(VMAddress, Vec<Vec<u8>>), VMHooksEarlyExit>
fn perform_transfer_execute( &mut self, to: VMAddress, egld_value: BigUint, func_name: TxFunctionName, arguments: Vec<Vec<u8>>, ) -> Result<(), VMHooksEarlyExit>
fn current_address(&self) -> &VMAddress
fn tx_hash(&self) -> H256
fn push_tx_log(&self, tx_log: TxLog)
fn storage_read(&self, key: &[u8]) -> Vec<u8> ⓘ
Auto Trait Implementations§
impl<S> Freeze for TxVMHooksContext<S>where
S: Freeze,
impl<S> !RefUnwindSafe for TxVMHooksContext<S>
impl<S> Send for TxVMHooksContext<S>where
S: Send,
impl<S> Sync for TxVMHooksContext<S>where
S: Sync,
impl<S> Unpin for TxVMHooksContext<S>where
S: Unpin,
impl<S> !UnwindSafe for TxVMHooksContext<S>
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more