[−][src]Struct casper_execution_engine::core::execution::Executor
Implementations
impl Executor
[src]
pub fn new(config: EngineConfig) -> Self
[src]
pub fn config(&self) -> EngineConfig
[src]
pub fn exec<R>(
&self,
module: Module,
entry_point: EntryPoint,
args: RuntimeArgs,
base_key: Key,
account: &Account,
named_keys: &mut NamedKeys,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache,
contract_package: &ContractPackage
) -> ExecutionResult where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
[src]
&self,
module: Module,
entry_point: EntryPoint,
args: RuntimeArgs,
base_key: Key,
account: &Account,
named_keys: &mut NamedKeys,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache,
contract_package: &ContractPackage
) -> ExecutionResult where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
pub fn exec_system_contract<R, T>(
&self,
direct_system_contract_call: DirectSystemContractCall,
module: Module,
runtime_args: RuntimeArgs,
named_keys: &mut NamedKeys,
extra_keys: &[Key],
base_key: Key,
account: &Account,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache
) -> (Option<T>, ExecutionResult) where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
T: FromBytes + CLTyped,
[src]
&self,
direct_system_contract_call: DirectSystemContractCall,
module: Module,
runtime_args: RuntimeArgs,
named_keys: &mut NamedKeys,
extra_keys: &[Key],
base_key: Key,
account: &Account,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache
) -> (Option<T>, ExecutionResult) where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
T: FromBytes + CLTyped,
pub fn exec_wasm_direct<R, T>(
&self,
module: Module,
entry_point_name: &str,
args: RuntimeArgs,
account: &mut Account,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
hash_address_generator: Rc<RefCell<AddressGenerator>>,
uref_address_generator: Rc<RefCell<AddressGenerator>>,
transfer_address_generator: Rc<RefCell<AddressGenerator>>,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache
) -> Result<T, Error> where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
T: FromBytes + CLTyped,
[src]
&self,
module: Module,
entry_point_name: &str,
args: RuntimeArgs,
account: &mut Account,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
hash_address_generator: Rc<RefCell<AddressGenerator>>,
uref_address_generator: Rc<RefCell<AddressGenerator>>,
transfer_address_generator: Rc<RefCell<AddressGenerator>>,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache
) -> Result<T, Error> where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
T: FromBytes + CLTyped,
Used to execute arbitrary wasm; necessary for running system contract installers / upgraders This is not meant to be used for executing system contracts.
pub fn create_runtime<'a, R>(
&self,
module: Module,
entry_point_type: EntryPointType,
runtime_args: RuntimeArgs,
named_keys: &'a mut NamedKeys,
extra_keys: &[Key],
base_key: Key,
account: &'a Account,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
hash_address_generator: Rc<RefCell<AddressGenerator>>,
uref_address_generator: Rc<RefCell<AddressGenerator>>,
transfer_address_generator: Rc<RefCell<AddressGenerator>>,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache
) -> Result<(ModuleRef, Runtime<'a, R>), Error> where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
[src]
&self,
module: Module,
entry_point_type: EntryPointType,
runtime_args: RuntimeArgs,
named_keys: &'a mut NamedKeys,
extra_keys: &[Key],
base_key: Key,
account: &'a Account,
authorization_keys: BTreeSet<AccountHash>,
blocktime: BlockTime,
deploy_hash: [u8; 32],
gas_limit: Gas,
hash_address_generator: Rc<RefCell<AddressGenerator>>,
uref_address_generator: Rc<RefCell<AddressGenerator>>,
transfer_address_generator: Rc<RefCell<AddressGenerator>>,
protocol_version: ProtocolVersion,
correlation_id: CorrelationId,
tracking_copy: Rc<RefCell<TrackingCopy<R>>>,
phase: Phase,
protocol_data: ProtocolData,
system_contract_cache: SystemContractCache
) -> Result<(ModuleRef, Runtime<'a, R>), Error> where
R: StateReader<Key, StoredValue>,
R::Error: Into<Error>,
Auto Trait Implementations
impl RefUnwindSafe for Executor
impl Send for Executor
impl Sync for Executor
impl Unpin for Executor
impl UnwindSafe for Executor
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> FromBits<T> for T
[src]
impl<T> Instrument for T
[src]
fn instrument(self, span: Span) -> Instrumented<Self>
[src]
fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,