Trait staging_xcm_executor::traits::DropAssets
source · pub trait DropAssets {
// Required method
fn drop_assets(
origin: &Location,
assets: AssetsInHolding,
context: &XcmContext,
) -> Weight;
}
Expand description
Define a handler for when some non-empty AssetsInHolding
value should be dropped.
Required Methods§
sourcefn drop_assets(
origin: &Location,
assets: AssetsInHolding,
context: &XcmContext,
) -> Weight
fn drop_assets( origin: &Location, assets: AssetsInHolding, context: &XcmContext, ) -> Weight
Handler for receiving dropped assets. Returns the weight consumed by this operation.
Object Safety§
This trait is not object safe.