pub struct SystemConfig<C>{
    pub callback_obj: C,
    pub blueprint_cache: NonIterMap<CanonicalBlueprintId, Rc<BlueprintDefinition>>,
    pub schema_cache: NonIterMap<SchemaHash, Rc<VersionedSchema<ScryptoCustomSchema>>>,
    pub auth_cache: NonIterMap<CanonicalBlueprintId, AuthConfig>,
    pub modules: SystemModuleMixer,
}

Fields§

§callback_obj: C§blueprint_cache: NonIterMap<CanonicalBlueprintId, Rc<BlueprintDefinition>>§schema_cache: NonIterMap<SchemaHash, Rc<VersionedSchema<ScryptoCustomSchema>>>§auth_cache: NonIterMap<CanonicalBlueprintId, AuthConfig>§modules: SystemModuleMixer

Trait Implementations§

source§

impl<C> KernelCallbackObject for SystemConfig<C>

§

type CallFrameData = Actor

§

type LockData = SystemLockData

§

type CallbackState = <C as SystemCallbackObject>::CallbackState

source§

fn init<S>( &mut self, store: &S ) -> Result<<C as SystemCallbackObject>::CallbackState, RuntimeError>
where S: BootStore,

Initialize the system layer with data loaded from the substate store
source§

fn start<Y>( api: &mut Y, manifest_encoded_instructions: &[u8], pre_allocated_addresses: &Vec<PreAllocatedAddress>, references: &IndexSet<Reference>, blobs: &IndexMap<Hash, Vec<u8>> ) -> Result<Vec<u8>, RuntimeError>
where Y: KernelApi<SystemConfig<C>>,

source§

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

source§

fn on_pin_node(&mut self, node_id: &NodeId) -> Result<(), RuntimeError>

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

fn invoke_upstream<Y>( input: &IndexedScryptoValue, api: &mut Y ) -> Result<IndexedScryptoValue, RuntimeError>
where Y: KernelApi<SystemConfig<C>>,

source§

fn auto_drop<Y>(nodes: Vec<NodeId>, api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<SystemConfig<C>>,

source§

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

source§

fn on_substate_lock_fault<Y>( node_id: NodeId, partition_num: PartitionNumber, offset: &SubstateKey, api: &mut Y ) -> Result<bool, RuntimeError>
where Y: KernelApi<SystemConfig<C>>,

source§

fn on_drop_node_mut<Y>( node_id: &NodeId, api: &mut Y ) -> Result<(), RuntimeError>
where Y: KernelApi<SystemConfig<C>>,

source§

fn on_move_node<Y>( node_id: &NodeId, is_moving_down: bool, is_to_barrier: bool, destination_blueprint_id: Option<BlueprintId>, api: &mut Y ) -> Result<(), RuntimeError>
where Y: KernelApi<SystemConfig<C>>,

source§

impl<'a, Y, V> KernelInternalApi<SystemConfig<V>> for SystemService<'a, Y, V>

source§

fn kernel_get_system_state(&mut self) -> SystemState<'_, SystemConfig<V>>

source§

fn kernel_get_current_depth(&self) -> usize

Gets the number of call frames that are currently in the call frame stack
source§

fn kernel_get_node_visibility(&self, node_id: &NodeId) -> NodeVisibility

Returns the visibility of a node
source§

fn kernel_read_bucket(&mut self, bucket_id: &NodeId) -> Option<BucketSnapshot>

source§

fn kernel_read_proof(&mut self, proof_id: &NodeId) -> Option<ProofSnapshot>

source§

fn kernel_get_system(&mut self) -> &mut M

Retrieves data associated with the kernel upstream layer (system)
source§

impl<V> SystemModule<SystemConfig<V>> for AuthModule

source§

fn on_teardown<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn before_invoke<Y>( _api: &mut Y, _invocation: &KernelInvocation<Actor> ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_start<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_finish<Y>( _api: &mut Y, _message: &CallFrameMessage ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn after_invoke<Y>( _api: &mut Y, _output: &IndexedScryptoValue ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_pin_node(_system: &mut M, _node_id: &NodeId) -> Result<(), RuntimeError>

source§

fn on_allocate_node_id<Y>( _api: &mut Y, _entity_type: EntityType ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_create_node<Y>( _api: &mut Y, _event: &CreateNodeEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_move_module<Y>( _api: &mut Y, _event: &MoveModuleEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_drop_node<Y>( _api: &mut Y, _event: &DropNodeEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_mark_substate_as_transient( _system: &mut M, _node_id: &NodeId, _partition_number: &PartitionNumber, _substate_key: &SubstateKey ) -> Result<(), RuntimeError>

source§

fn on_open_substate<Y>( _api: &mut Y, _event: &OpenSubstateEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_read_substate<Y>( _api: &mut Y, _event: &ReadSubstateEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_write_substate<Y>( _api: &mut Y, _event: &WriteSubstateEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_close_substate<Y>( _api: &mut Y, _event: &CloseSubstateEvent ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_set_substate( _system: &mut M, _event: &SetSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_remove_substate( _system: &mut M, _event: &RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_keys( _system: &mut M, _event: &ScanKeysEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_drain_substates( _system: &mut M, _event: &DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_sorted_substates( _system: &mut M, _event: &ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>

source§

impl<V> SystemModule<SystemConfig<V>> for CostingModule

source§

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

source§

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

source§

fn on_create_node<Y>( 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>( api: &mut Y, event: &DropNodeEvent<'_> ) -> Result<(), RuntimeError>

source§

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

source§

fn on_open_substate<Y>( 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>( api: &mut Y, event: &ReadSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

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

source§

fn on_close_substate<Y>( 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>

source§

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

source§

fn on_teardown<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_start<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_finish<Y>( _api: &mut Y, _message: &CallFrameMessage ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

impl<V> SystemModule<SystemConfig<V>> for ExecutionTraceModule

source§

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

source§

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

source§

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

source§

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

source§

fn on_teardown<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_start<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn after_invoke<Y>( _api: &mut Y, _output: &IndexedScryptoValue ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_pin_node(_system: &mut M, _node_id: &NodeId) -> Result<(), RuntimeError>

source§

fn on_allocate_node_id<Y>( _api: &mut Y, _entity_type: EntityType ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_move_module<Y>( _api: &mut Y, _event: &MoveModuleEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_mark_substate_as_transient( _system: &mut M, _node_id: &NodeId, _partition_number: &PartitionNumber, _substate_key: &SubstateKey ) -> Result<(), RuntimeError>

source§

fn on_open_substate<Y>( _api: &mut Y, _event: &OpenSubstateEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_read_substate<Y>( _api: &mut Y, _event: &ReadSubstateEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_write_substate<Y>( _api: &mut Y, _event: &WriteSubstateEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_close_substate<Y>( _api: &mut Y, _event: &CloseSubstateEvent ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_set_substate( _system: &mut M, _event: &SetSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_remove_substate( _system: &mut M, _event: &RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_keys( _system: &mut M, _event: &ScanKeysEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_drain_substates( _system: &mut M, _event: &DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_sorted_substates( _system: &mut M, _event: &ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>

source§

impl<V> SystemModule<SystemConfig<V>> for KernelTraceModule

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

fn on_teardown<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_start<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_pin_node(_system: &mut M, _node_id: &NodeId) -> Result<(), RuntimeError>

source§

fn on_move_module<Y>( _api: &mut Y, _event: &MoveModuleEvent<'_> ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

fn on_mark_substate_as_transient( _system: &mut M, _node_id: &NodeId, _partition_number: &PartitionNumber, _substate_key: &SubstateKey ) -> Result<(), RuntimeError>

source§

fn on_set_substate( _system: &mut M, _event: &SetSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_remove_substate( _system: &mut M, _event: &RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_keys( _system: &mut M, _event: &ScanKeysEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_drain_substates( _system: &mut M, _event: &DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>

source§

fn on_scan_sorted_substates( _system: &mut M, _event: &ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>

source§

impl<V> SystemModule<SystemConfig<V>> for LimitsModule

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

fn on_write_substate<Y>( api: &mut Y, event: &WriteSubstateEvent<'_> ) -> 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>

source§

fn on_teardown<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_start<Y>(_api: &mut Y) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_execution_finish<Y>( _api: &mut Y, _message: &CallFrameMessage ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn after_invoke<Y>( _api: &mut Y, _output: &IndexedScryptoValue ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_pin_node(_system: &mut M, _node_id: &NodeId) -> Result<(), RuntimeError>

source§

fn on_allocate_node_id<Y>( _api: &mut Y, _entity_type: EntityType ) -> Result<(), RuntimeError>
where Y: KernelApi<M>,

source§

fn on_mark_substate_as_transient( _system: &mut M, _node_id: &NodeId, _partition_number: &PartitionNumber, _substate_key: &SubstateKey ) -> Result<(), RuntimeError>

source§

fn on_close_substate<Y>( _api: &mut Y, _event: &CloseSubstateEvent ) -> Result<(), RuntimeError>
where Y: KernelInternalApi<M>,

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

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

source§

fn on_create_node<Y>( 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>( api: &mut Y, event: &DropNodeEvent<'_> ) -> Result<(), RuntimeError>

source§

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

source§

fn on_open_substate<Y>( 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>( api: &mut Y, event: &ReadSubstateEvent<'_> ) -> Result<(), RuntimeError>

source§

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

source§

fn on_close_substate<Y>( 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>

source§

impl<C> WrappedSystem<C> for SystemConfig<C>

§

type Init = ()

source§

fn create(config: SystemConfig<C>, _: ()) -> SystemConfig<C>

source§

fn system_mut(&mut self) -> &mut SystemConfig<C>

source§

fn to_system(self) -> SystemConfig<C>

Auto Trait Implementations§

§

impl<C> !RefUnwindSafe for SystemConfig<C>

§

impl<C> !Send for SystemConfig<C>

§

impl<C> !Sync for SystemConfig<C>

§

impl<C> Unpin for SystemConfig<C>
where C: Unpin,

§

impl<C> !UnwindSafe for SystemConfig<C>

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