pub struct SystemModuleMixer {
    pub enabled_modules: EnabledModules,
    pub(super) kernel_trace: KernelTraceModule,
    pub(super) limits: LimitsModule,
    pub(super) costing: CostingModule,
    pub(super) auth: AuthModule,
    pub(crate) transaction_runtime: TransactionRuntimeModule,
    pub(super) execution_trace: ExecutionTraceModule,
}

Fields§

§enabled_modules: EnabledModules§kernel_trace: KernelTraceModule§limits: LimitsModule§costing: CostingModule§auth: AuthModule§transaction_runtime: TransactionRuntimeModule§execution_trace: ExecutionTraceModule

Implementations§

source§

impl SystemModuleMixer

source

pub fn new( enabled_modules: EnabledModules, network_definition: NetworkDefinition, tx_hash: Hash, auth_zone_params: AuthZoneParams, fee_reserve: SystemLoanFeeReserve, fee_table: FeeTable, payload_len: usize, num_of_signature_validations: usize, execution_config: &ExecutionConfig ) -> Self

source

pub fn unpack( self ) -> (CostingModule, TransactionRuntimeModule, ExecutionTraceModule)

source§

impl SystemModuleMixer

source

pub fn on_call_method<Y, V>( api: &mut SystemService<'_, Y, V>, receiver: &NodeId, module_id: ModuleId, direct_access: bool, ident: &str, args: &IndexedScryptoValue ) -> Result<NodeId, RuntimeError>

source

pub fn on_call_method_finish<Y, V>( api: &mut SystemService<'_, Y, V>, auth_zone: NodeId ) -> Result<(), RuntimeError>

source

pub fn on_call_function<V, Y>( api: &mut SystemService<'_, Y, V>, blueprint_id: &BlueprintId, ident: &str ) -> Result<NodeId, RuntimeError>

source

pub fn on_call_function_finish<V, Y>( api: &mut SystemService<'_, Y, V>, auth_zone: NodeId ) -> Result<(), RuntimeError>

source

pub fn add_log( &mut self, level: Level, message: String ) -> Result<(), RuntimeError>

source

pub fn assert_can_add_event(&mut self) -> Result<(), RuntimeError>

source

pub fn add_event_unchecked(&mut self, event: Event) -> Result<(), RuntimeError>

source

pub fn checked_add_event(&mut self, event: Event) -> Result<(), RuntimeError>

source

pub fn set_panic_message(&mut self, message: String) -> Result<(), RuntimeError>

source

pub fn add_replacement( &mut self, old: (NodeId, ModuleId), new: (NodeId, ModuleId) )

source

pub fn fee_reserve(&mut self) -> Option<&SystemLoanFeeReserve>

source

pub fn costing(&mut self) -> Option<&CostingModule>

source

pub fn costing_mut(&mut self) -> Option<&mut CostingModule>

source

pub fn limits_mut(&mut self) -> Option<&mut LimitsModule>

source

pub fn transaction_hash(&self) -> Option<Hash>

source

pub fn generate_ruid(&mut self) -> Option<[u8; 32]>

source

pub fn update_instruction_index(&mut self, new_index: usize)

source

pub fn apply_execution_cost( &mut self, costing_entry: ExecutionCostingEntry<'_> ) -> Result<(), RuntimeError>

source

pub fn apply_finalization_cost( &mut self, costing_entry: FinalizationCostingEntry<'_> ) -> Result<(), RuntimeError>

source

pub fn apply_storage_cost( &mut self, storage_type: StorageType, size_increase: usize ) -> Result<(), RuntimeError>

source

pub fn lock_fee( &mut self, vault_id: NodeId, locked_fee: LiquidFungibleResource, contingent: bool )

source

pub fn events(&self) -> &Vec<Event>

source

pub fn logs(&self) -> &Vec<(Level, String)>

Trait Implementations§

source§

impl InitSystemModule for SystemModuleMixer

source§

impl<V: SystemCallbackObject> SystemModule<SystemConfig<V>> for SystemModuleMixer

source§

fn on_teardown<Y: KernelApi<SystemConfig<V>>>( api: &mut Y ) -> Result<(), RuntimeError>

source§

fn before_invoke<Y: KernelApi<SystemConfig<V>>>( api: &mut Y, invocation: &KernelInvocation<Actor> ) -> Result<(), RuntimeError>

source§

fn on_execution_start<Y: KernelApi<SystemConfig<V>>>( api: &mut Y ) -> Result<(), RuntimeError>

source§

fn on_execution_finish<Y: KernelApi<SystemConfig<V>>>( api: &mut Y, message: &CallFrameMessage ) -> Result<(), RuntimeError>

source§

fn after_invoke<Y: KernelApi<SystemConfig<V>>>( api: &mut Y, output: &IndexedScryptoValue ) -> Result<(), RuntimeError>

source§

fn on_allocate_node_id<Y: KernelApi<SystemConfig<V>>>( api: &mut Y, entity_type: EntityType ) -> Result<(), RuntimeError>

source§

fn on_create_node<Y: KernelInternalApi<SystemConfig<V>>>( api: &mut Y, event: &CreateNodeEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_pin_node( system: &mut SystemConfig<V>, node_id: &NodeId ) -> Result<(), RuntimeError>

source§

fn on_drop_node<Y: KernelInternalApi<SystemConfig<V>>>( api: &mut Y, event: &DropNodeEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_move_module<Y: KernelInternalApi<SystemConfig<V>>>( api: &mut Y, event: &MoveModuleEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_open_substate<Y: KernelInternalApi<SystemConfig<V>>>( api: &mut Y, event: &OpenSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_mark_substate_as_transient( system: &mut SystemConfig<V>, node_id: &NodeId, partition_number: &PartitionNumber, substate_key: &SubstateKey ) -> Result<(), RuntimeError>

source§

fn on_read_substate<Y: KernelInternalApi<SystemConfig<V>>>( api: &mut Y, event: &ReadSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_write_substate<Y: KernelInternalApi<SystemConfig<V>>>( api: &mut Y, event: &WriteSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_close_substate<Y: KernelInternalApi<SystemConfig<V>>>( api: &mut Y, event: &CloseSubstateEvent ) -> Result<(), RuntimeError>

source§

fn on_set_substate( system: &mut SystemConfig<V>, event: &SetSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_remove_substate( system: &mut SystemConfig<V>, event: &RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_keys( system: &mut SystemConfig<V>, event: &ScanKeysEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_drain_substates( system: &mut SystemConfig<V>, event: &DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_sorted_substates( system: &mut SystemConfig<V>, event: &ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<U> As for U

§

fn as_<T>(self) -> T
where T: CastFrom<U>,

Casts self to type T. The semantics of numeric casting with the as operator are followed, so <T as As>::as_::<U> can be used in the same way as T as U for numeric conversions. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
§

impl<T> Downcast for T
where T: Any,

§

fn into_any(self: Box<T>) -> Box<dyn Any>

Convert Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.
§

fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>

Convert Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be further downcast into Rc<ConcreteType> where ConcreteType implements Trait.
§

fn as_any(&self) -> &(dyn Any + 'static)

Convert &Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &Any’s vtable from &Trait’s.
§

fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)

Convert &mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot generate &mut Any’s vtable from &mut Trait’s.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

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

§

fn vzip(self) -> V