[][src]Struct casperlabs_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,
    parity_module: Module,
    args: Vec<u8>,
    base_key: Key,
    account: &Account,
    authorized_keys: BTreeSet<PublicKey>,
    blocktime: BlockTime,
    deploy_hash: [u8; 32],
    gas_limit: Gas,
    protocol_version: ProtocolVersion,
    correlation_id: CorrelationId,
    tc: Rc<RefCell<TrackingCopy<R>>>,
    phase: Phase,
    protocol_data: ProtocolData,
    system_contract_cache: SystemContractCache
) -> ExecutionResult where
    R: StateReader<Key, StoredValue>,
    R::Error: Into<Error>, 
[src]

pub fn exec_finalize<R>(
    &self,
    parity_module: Module,
    args: Vec<u8>,
    named_keys: &mut BTreeMap<String, Key>,
    base_key: Key,
    account: &Account,
    authorization_keys: BTreeSet<PublicKey>,
    blocktime: BlockTime,
    deploy_hash: [u8; 32],
    gas_limit: Gas,
    protocol_version: ProtocolVersion,
    correlation_id: CorrelationId,
    state: Rc<RefCell<TrackingCopy<R>>>,
    phase: Phase,
    protocol_data: ProtocolData,
    system_contract_cache: SystemContractCache
) -> ExecutionResult where
    R: StateReader<Key, StoredValue>,
    R::Error: Into<Error>, 
[src]

pub fn create_runtime<'a, R>(
    &self,
    module: Module,
    args: Vec<u8>,
    keys: &'a mut BTreeMap<String, Key>,
    base_key: Key,
    account: &'a Account,
    authorization_keys: BTreeSet<PublicKey>,
    blocktime: BlockTime,
    deploy_hash: [u8; 32],
    gas_limit: Gas,
    address_generator: Rc<RefCell<AddressGenerator>>,
    protocol_version: ProtocolVersion,
    correlation_id: CorrelationId,
    state: 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]

pub fn exec_system<R, T>(
    &self,
    module: Module,
    args: Vec<u8>,
    keys: &mut BTreeMap<String, Key>,
    base_key: Key,
    account: &Account,
    authorization_keys: BTreeSet<PublicKey>,
    blocktime: BlockTime,
    deploy_hash: [u8; 32],
    gas_limit: Gas,
    address_generator: Rc<RefCell<AddressGenerator>>,
    protocol_version: ProtocolVersion,
    correlation_id: CorrelationId,
    state: 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]

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

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>,