Struct radix_engine::system::system_modules::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: SystemCallbackObject> SystemModule<System<V>> for CostingModule
impl<V: SystemCallbackObject> SystemModule<System<V>> for CostingModule
fn before_invoke<Y: KernelApi<System<V>>>( api: &mut Y, invocation: &KernelInvocation<Actor> ) -> Result<(), RuntimeError>
fn after_invoke<Y: KernelApi<System<V>>>( api: &mut Y, output: &IndexedScryptoValue ) -> Result<(), RuntimeError>
fn on_create_node<Y: KernelInternalApi<System<V>>>( api: &mut Y, event: &CreateNodeEvent<'_> ) -> Result<(), RuntimeError>
fn on_pin_node( system: &mut System<V>, node_id: &NodeId ) -> Result<(), RuntimeError>
fn on_drop_node<Y: KernelInternalApi<System<V>>>( api: &mut Y, event: &DropNodeEvent<'_> ) -> Result<(), RuntimeError>
fn on_move_module<Y: KernelInternalApi<System<V>>>( api: &mut Y, event: &MoveModuleEvent<'_> ) -> Result<(), RuntimeError>
fn on_open_substate<Y: KernelInternalApi<System<V>>>( api: &mut Y, event: &OpenSubstateEvent<'_> ) -> Result<(), RuntimeError>
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: KernelInternalApi<System<V>>>( api: &mut Y, event: &ReadSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_write_substate<Y: KernelInternalApi<System<V>>>( api: &mut Y, event: &WriteSubstateEvent<'_> ) -> Result<(), RuntimeError>
fn on_close_substate<Y: KernelInternalApi<System<V>>>( api: &mut Y, event: &CloseSubstateEvent ) -> Result<(), RuntimeError>
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: KernelApi<System<V>>>( api: &mut Y, _entity_type: EntityType ) -> Result<(), RuntimeError>
fn on_execution_start<Y: KernelApi<M>>(_api: &mut Y) -> Result<(), RuntimeError>
fn on_execution_finish<Y: KernelApi<M>>( _api: &mut Y, _message: &CallFrameMessage ) -> Result<(), RuntimeError>
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.