pub trait DropAssets {
    // Required method
    fn drop_assets(origin: &MultiLocation, assets: Assets) -> Weight;
}
Expand description

Define a handler for when some non-empty Assets value should be dropped.

Required Methods§

source

fn drop_assets(origin: &MultiLocation, assets: Assets) -> Weight

Handler for receiving dropped assets. Returns the weight consumed by this operation.

Implementations on Foreign Types§

source§

impl DropAssets for ()

source§

fn drop_assets(_origin: &MultiLocation, _assets: Assets) -> Weight

Implementors§