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§
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
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 ()
impl WeightInfo for ()
Source§fn destroy(n: u32, m: u32, a: u32) -> Weight
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]
.