pallet_nodle_uniques::weights

Trait WeightInfo

Source
pub trait WeightInfo {
    // Required methods
    fn destroy(n: u32, m: u32, a: u32) -> Weight;
    fn mint_with_extra_deposit() -> Weight;
    fn burn() -> Weight;
    fn create_with_extra_deposit_limit() -> Weight;
    fn transfer_ownership() -> Weight;
    fn update_extra_deposit_limit() -> Weight;
}
Expand description

Weight functions needed for pallet_nodle_uniques.

Required Methods§

Source

fn destroy(n: u32, m: u32, a: u32) -> Weight

Source

fn mint_with_extra_deposit() -> Weight

Source

fn burn() -> Weight

Source

fn create_with_extra_deposit_limit() -> Weight

Source

fn transfer_ownership() -> Weight

Source

fn update_extra_deposit_limit() -> Weight

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl WeightInfo for ()

Source§

fn destroy(n: u32, m: u32, a: u32) -> Weight

The range of component n is [0, 1000]. The range of component m is [0, 1000]. The range of component a is [0, 1000].

Source§

fn mint_with_extra_deposit() -> Weight

Source§

fn burn() -> Weight

Source§

fn create_with_extra_deposit_limit() -> Weight

Source§

fn transfer_ownership() -> Weight

Source§

fn update_extra_deposit_limit() -> Weight

Implementors§

Source§

impl<T: Config> WeightInfo for SubstrateWeight<T>