pub struct TransactionRuntimeModule {
pub network_definition: NetworkDefinition,
pub tx_hash: Hash,
pub next_id: u32,
pub logs: Vec<(Level, String)>,
pub events: Vec<Event>,
pub replacements: IndexMap<(NodeId, ModuleId), (NodeId, ModuleId)>,
}Fields§
§network_definition: NetworkDefinition§tx_hash: Hash§next_id: u32§logs: Vec<(Level, String)>§events: Vec<Event>§replacements: IndexMap<(NodeId, ModuleId), (NodeId, ModuleId)>Implementations§
source§impl TransactionRuntimeModule
impl TransactionRuntimeModule
pub fn new( network_definition: NetworkDefinition, tx_hash: Hash ) -> TransactionRuntimeModule
pub fn generate_ruid(&mut self) -> [u8; 32]
pub fn add_log(&mut self, level: Level, message: String)
pub fn add_event(&mut self, event: Event)
pub fn add_replacement( &mut self, old: (NodeId, ModuleId), new: (NodeId, ModuleId) )
pub fn finalize( self, is_success: bool ) -> (Vec<(EventTypeIdentifier, Vec<u8>)>, Vec<(Level, String)>)
Trait Implementations§
source§impl Clone for TransactionRuntimeModule
impl Clone for TransactionRuntimeModule
source§fn clone(&self) -> TransactionRuntimeModule
fn clone(&self) -> TransactionRuntimeModule
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresource§impl Debug for TransactionRuntimeModule
impl Debug for TransactionRuntimeModule
source§impl InitSystemModule for TransactionRuntimeModule
impl InitSystemModule for TransactionRuntimeModule
fn init(&mut self) -> Result<(), BootloadingError>
fn on_teardown(&mut self) -> Result<(), RuntimeError>
source§impl<K> SystemModule<K> for TransactionRuntimeModulewhere
K: KernelCallbackObject,
impl<K> SystemModule<K> for TransactionRuntimeModulewhere
K: KernelCallbackObject,
fn before_invoke<Y>(
_api: &mut Y,
_invocation: &KernelInvocation<Actor>
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_execution_start<Y>(_api: &mut Y) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_execution_finish<Y>(
_api: &mut Y,
_message: &CallFrameMessage
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn after_invoke<Y>(
_api: &mut Y,
_output: &IndexedScryptoValue
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_pin_node(_system: &mut M, _node_id: &NodeId) -> Result<(), RuntimeError>
fn on_allocate_node_id<Y>(
_api: &mut Y,
_entity_type: EntityType
) -> Result<(), RuntimeError>where
Y: KernelApi<M>,
fn on_create_node<Y>(
_api: &mut Y,
_event: &CreateNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_move_module<Y>(
_api: &mut Y,
_event: &MoveModuleEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_drop_node<Y>(
_api: &mut Y,
_event: &DropNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_mark_substate_as_transient( _system: &mut M, _node_id: &NodeId, _partition_number: &PartitionNumber, _substate_key: &SubstateKey ) -> Result<(), RuntimeError>
fn on_open_substate<Y>(
_api: &mut Y,
_event: &OpenSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_read_substate<Y>(
_api: &mut Y,
_event: &ReadSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_write_substate<Y>(
_api: &mut Y,
_event: &WriteSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_close_substate<Y>(
_api: &mut Y,
_event: &CloseSubstateEvent
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<M>,
fn on_set_substate( _system: &mut M, _event: &SetSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_remove_substate( _system: &mut M, _event: &RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_keys( _system: &mut M, _event: &ScanKeysEvent<'_> ) -> Result<(), RuntimeError>
fn on_drain_substates( _system: &mut M, _event: &DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_sorted_substates( _system: &mut M, _event: &ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>
Auto Trait Implementations§
impl Freeze for TransactionRuntimeModule
impl RefUnwindSafe for TransactionRuntimeModule
impl Send for TransactionRuntimeModule
impl Sync for TransactionRuntimeModule
impl Unpin for TransactionRuntimeModule
impl UnwindSafe for TransactionRuntimeModule
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
source§fn into_any(self: Box<T>) -> Box<dyn 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.source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
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.source§fn as_any(&self) -> &(dyn Any + 'static)
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.source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
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> DowncastSync for T
impl<T> DowncastSync for T
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more