[][src]Struct casper_execution_engine::core::execution::Executor

pub struct Executor { /* fields omitted */ }

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]

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]

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]

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]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> FromBits<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,