pub trait DropAssets {
    // Required method
    fn drop_assets(
        origin: &MultiLocation,
        assets: Assets,
        context: &XcmContext
    ) -> 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, context: &XcmContext ) -> 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, _context: &XcmContext ) -> Weight

Implementors§