Struct scrypto_test::prelude::costing::CostingModule
source · pub struct CostingModule {
pub config: CostingModuleConfig,
pub fee_reserve: SystemLoanFeeReserve,
pub fee_table: FeeTable,
pub on_apply_cost: OnApplyCost,
pub tx_payload_len: usize,
pub tx_num_of_signature_validations: usize,
pub cost_breakdown: Option<CostBreakdown>,
}Fields§
§config: CostingModuleConfig§fee_reserve: SystemLoanFeeReserve§fee_table: FeeTable§on_apply_cost: OnApplyCost§tx_payload_len: usize§tx_num_of_signature_validations: usize§cost_breakdown: Option<CostBreakdown>Implementations§
source§impl CostingModule
impl CostingModule
pub fn apply_execution_cost( &mut self, costing_entry: ExecutionCostingEntry<'_> ) -> Result<(), CostingError>
pub fn apply_execution_cost_2( &mut self, costing_entry: ExecutionCostingEntry<'_> ) -> Result<(), CostingError>
pub fn apply_deferred_execution_cost( &mut self, costing_entry: ExecutionCostingEntry<'_> ) -> Result<(), CostingError>
pub fn apply_deferred_storage_cost( &mut self, storage_type: StorageType, size_increase: usize ) -> Result<(), CostingError>
pub fn apply_finalization_cost( &mut self, costing_entry: FinalizationCostingEntry<'_> ) -> Result<(), CostingError>
pub fn apply_storage_cost( &mut self, storage_type: StorageType, size_increase: usize ) -> Result<(), CostingError>
pub fn lock_fee( &mut self, vault_id: NodeId, locked_fee: LiquidFungibleResource, contingent: bool )
Trait Implementations§
source§impl Clone for CostingModule
impl Clone for CostingModule
source§fn clone(&self) -> CostingModule
fn clone(&self) -> CostingModule
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 CostingModule
impl Debug for CostingModule
source§impl InitSystemModule for CostingModule
impl InitSystemModule for CostingModule
fn init(&mut self) -> Result<(), BootloadingError>
fn on_teardown(&mut self) -> Result<(), RuntimeError>
source§impl<V> SystemModule<System<V>> for CostingModulewhere
V: SystemCallbackObject,
impl<V> SystemModule<System<V>> for CostingModulewhere
V: SystemCallbackObject,
fn before_invoke<Y>( api: &mut Y, invocation: &KernelInvocation<Actor> ) -> Result<(), RuntimeError>
fn after_invoke<Y>( api: &mut Y, output: &IndexedScryptoValue ) -> Result<(), RuntimeError>
fn on_create_node<Y>(
api: &mut Y,
event: &CreateNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<System<V>>,
fn on_pin_node( system: &mut System<V>, node_id: &NodeId ) -> Result<(), RuntimeError>
fn on_drop_node<Y>(
api: &mut Y,
event: &DropNodeEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<System<V>>,
fn on_move_module<Y>(
api: &mut Y,
event: &MoveModuleEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<System<V>>,
fn on_open_substate<Y>(
api: &mut Y,
event: &OpenSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<System<V>>,
fn on_mark_substate_as_transient( system: &mut System<V>, node_id: &NodeId, partition_number: &PartitionNumber, substate_key: &SubstateKey ) -> Result<(), RuntimeError>
fn on_read_substate<Y>(
api: &mut Y,
event: &ReadSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<System<V>>,
fn on_write_substate<Y>(
api: &mut Y,
event: &WriteSubstateEvent<'_>
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<System<V>>,
fn on_close_substate<Y>(
api: &mut Y,
event: &CloseSubstateEvent
) -> Result<(), RuntimeError>where
Y: KernelInternalApi<System<V>>,
fn on_set_substate( system: &mut System<V>, event: &SetSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_remove_substate( system: &mut System<V>, event: &RemoveSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_keys( system: &mut System<V>, event: &ScanKeysEvent<'_> ) -> Result<(), RuntimeError>
fn on_drain_substates( system: &mut System<V>, event: &DrainSubstatesEvent<'_> ) -> Result<(), RuntimeError>
fn on_scan_sorted_substates( system: &mut System<V>, event: &ScanSortedSubstatesEvent<'_> ) -> Result<(), RuntimeError>
fn on_allocate_node_id<Y>( api: &mut Y, _entity_type: EntityType ) -> Result<(), RuntimeError>
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>,
Auto Trait Implementations§
impl Freeze for CostingModule
impl !RefUnwindSafe for CostingModule
impl !Send for CostingModule
impl !Sync for CostingModule
impl Unpin for CostingModule
impl !UnwindSafe for CostingModule
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