Struct scrypto_test::ledger_simulator::InjectCostingError
source · pub struct InjectCostingError<K: SystemCallbackObject> { /* private fields */ }Trait Implementations§
source§impl<K: SystemCallbackObject> KernelCallbackObject for InjectCostingError<K>
impl<K: SystemCallbackObject> KernelCallbackObject for InjectCostingError<K>
type LockData = SystemLockData
type CallFrameData = Actor
type Init = InjectCostingErrorInput<SystemInit<<K as SystemCallbackObject>::InitInput>>
type ExecutionOutput = Vec<InstructionOutput>
type Receipt = TransactionReceiptV1
source§fn init<S: BootStore + CommitableSubstateStore>(
store: &mut S,
executable: &Executable<'_>,
init_input: Self::Init
) -> Result<Self, RejectionReason>
fn init<S: BootStore + CommitableSubstateStore>( store: &mut S, executable: &Executable<'_>, init_input: Self::Init ) -> Result<Self, RejectionReason>
Create the callback object (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<InstructionOutput>, RuntimeError>where
Y: KernelApi<Self>,
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<InstructionOutput>, RuntimeError>where
Y: KernelApi<Self>,
Start execution
source§fn finish(
&mut self,
store_commit_info: StoreCommitInfo
) -> Result<(), RuntimeError>
fn finish( &mut self, store_commit_info: StoreCommitInfo ) -> Result<(), RuntimeError>
Finish execution
source§fn create_receipt<S: SubstateDatabase>(
self,
track: Track<'_, S, SpreadPrefixKeyMapper>,
executable: &Executable<'_>,
result: Result<Vec<InstructionOutput>, TransactionExecutionError>
) -> TransactionReceipt
fn create_receipt<S: SubstateDatabase>( self, track: Track<'_, S, SpreadPrefixKeyMapper>, executable: &Executable<'_>, result: Result<Vec<InstructionOutput>, TransactionExecutionError> ) -> TransactionReceipt
Create final receipt
source§fn verify_boot_ref_value(
&mut self,
node_id: &NodeId,
value: &IndexedScryptoValue
) -> Result<StableReferenceType, BootloadingError>
fn verify_boot_ref_value( &mut self, node_id: &NodeId, value: &IndexedScryptoValue ) -> Result<StableReferenceType, BootloadingError>
Verifies and returns the type of a given reference used during boot
fn on_pin_node(&mut self, node_id: &NodeId) -> Result<(), RuntimeError>
fn on_create_node<Y>(
api: &mut Y,
event: CreateNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<Self>,
fn on_drop_node<Y>(
api: &mut Y,
event: DropNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<Self>,
fn on_move_module<Y>(
api: &mut Y,
event: MoveModuleEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<Self>,
fn on_open_substate<Y>(
api: &mut Y,
event: OpenSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<Self>,
fn on_close_substate<Y>(
api: &mut Y,
event: CloseSubstateEvent
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<Self>,
fn on_read_substate<Y>(
api: &mut Y,
event: ReadSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<Self>,
fn on_write_substate<Y>(
api: &mut Y,
event: WriteSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<Self>,
fn on_set_substate( &mut self, event: SetSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_remove_substate( &mut self, event: RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_keys(&mut self, event: ScanKeysEvent<'_>) -> Result<(), RuntimeError>
fn on_drain_substates( &mut self, event: DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_sorted_substates( &mut self, event: ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>
fn before_invoke<Y>(
invocation: &KernelInvocation<Self::CallFrameData>,
api: &mut Y
) -> Result<(), RuntimeError>where
Y: KernelApi<Self>,
fn after_invoke<Y>(
output: &IndexedScryptoValue,
api: &mut Y
) -> Result<(), RuntimeError>where
Y: KernelApi<Self>,
fn on_execution_start<Y>(api: &mut Y) -> Result<(), RuntimeError>where
Y: KernelApi<Self>,
fn on_execution_finish<Y>(
message: &CallFrameMessage,
api: &mut Y
) -> Result<(), RuntimeError>where
Y: KernelApi<Self>,
fn on_allocate_node_id<Y>(
entity_type: EntityType,
api: &mut Y
) -> Result<(), RuntimeError>where
Y: KernelApi<Self>,
fn invoke_upstream<Y>(
args: &IndexedScryptoValue,
api: &mut Y
) -> Result<IndexedScryptoValue, RuntimeError>where
Y: KernelApi<Self>,
fn auto_drop<Y>(nodes: Vec<NodeId>, api: &mut Y) -> Result<(), RuntimeError>where
Y: KernelApi<Self>,
fn on_mark_substate_as_transient( &mut self, node_id: &NodeId, partition_number: &PartitionNumber, substate_key: &SubstateKey ) -> Result<(), RuntimeError>
fn on_substate_lock_fault<Y>(
node_id: NodeId,
partition_num: PartitionNumber,
offset: &SubstateKey,
api: &mut Y
) -> Result<bool, RuntimeError>where
Y: KernelApi<Self>,
fn on_drop_node_mut<Y>(
node_id: &NodeId,
api: &mut Y
) -> Result<(), RuntimeError>where
Y: KernelApi<Self>,
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<Self>,
Auto Trait Implementations§
impl<K> Freeze for InjectCostingError<K>where
K: Freeze,
impl<K> !RefUnwindSafe for InjectCostingError<K>
impl<K> !Send for InjectCostingError<K>
impl<K> !Sync for InjectCostingError<K>
impl<K> Unpin for InjectCostingError<K>where
K: Unpin,
impl<K> !UnwindSafe for InjectCostingError<K>
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> 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