Trait pallet_uniques::weights::WeightInfo[][src]

pub trait WeightInfo {
Show methods fn create() -> Weight;
fn force_create() -> Weight;
fn destroy(n: u32, m: u32, a: u32) -> Weight;
fn mint() -> Weight;
fn burn() -> Weight;
fn transfer() -> Weight;
fn redeposit(i: u32) -> Weight;
fn freeze() -> Weight;
fn thaw() -> Weight;
fn freeze_class() -> Weight;
fn thaw_class() -> Weight;
fn transfer_ownership() -> Weight;
fn set_team() -> Weight;
fn force_asset_status() -> Weight;
fn set_attribute() -> Weight;
fn clear_attribute() -> Weight;
fn set_metadata() -> Weight;
fn clear_metadata() -> Weight;
fn set_class_metadata() -> Weight;
fn clear_class_metadata() -> Weight;
fn approve_transfer() -> Weight;
fn cancel_approval() -> Weight;
}
Expand description

Weight functions needed for pallet_uniques.

Required methods

Implementations on Foreign Types

Implementors