pub struct CostingModule {
    pub fee_reserve: SystemLoanFeeReserve,
    pub fee_table: FeeTable,
    pub max_call_depth: usize,
    pub tx_payload_len: usize,
    pub tx_num_of_signature_validations: usize,
    pub max_per_function_royalty_in_xrd: Decimal,
    pub enable_cost_breakdown: bool,
    pub execution_cost_breakdown: IndexMap<String, u32>,
    pub finalization_cost_breakdown: IndexMap<String, u32>,
    pub storage_cost_breakdown: IndexMap<StorageType, usize>,
    pub on_apply_cost: OnApplyCost,
}

Fields§

§fee_reserve: SystemLoanFeeReserve§fee_table: FeeTable§max_call_depth: usize§tx_payload_len: usize§tx_num_of_signature_validations: usize§max_per_function_royalty_in_xrd: Decimal

The maximum allowed method royalty in XRD allowed to be set by package and component owners

§enable_cost_breakdown: bool§execution_cost_breakdown: IndexMap<String, u32>§finalization_cost_breakdown: IndexMap<String, u32>§storage_cost_breakdown: IndexMap<StorageType, usize>§on_apply_cost: OnApplyCost

Implementations§

source§

impl CostingModule

source

pub fn fee_reserve(self) -> SystemLoanFeeReserve

source

pub fn apply_execution_cost( &mut self, costing_entry: ExecutionCostingEntry<'_> ) -> Result<(), RuntimeError>

source

pub fn apply_deferred_execution_cost( &mut self, costing_entry: ExecutionCostingEntry<'_> ) -> Result<(), RuntimeError>

source

pub fn apply_deferred_storage_cost( &mut self, storage_type: StorageType, size_increase: usize ) -> Result<(), RuntimeError>

source

pub fn apply_finalization_cost( &mut self, costing_entry: FinalizationCostingEntry<'_> ) -> Result<(), RuntimeError>

source

pub fn apply_storage_cost( &mut self, storage_type: StorageType, size_increase: usize ) -> Result<(), RuntimeError>

source

pub fn lock_fee( &mut self, vault_id: NodeId, locked_fee: LiquidFungibleResource, contingent: bool )

Trait Implementations§

source§

impl Clone for CostingModule

source§

fn clone(&self) -> CostingModule

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CostingModule

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl InitSystemModule for CostingModule

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>,

Auto Trait Implementations§

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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