referrerpolicy=no-referrer-when-downgrade
frame_support::traits::tokens::asset_ops

Trait DestroyStrategy

Source
pub trait DestroyStrategy {
    type Success;
}
Expand description

A strategy for use in the Destroy implementations.

The common destroy strategies are:

Required Associated Types§

Source

type Success

This type represents a successful asset destruction. It will be in the Result type of the Destroy::destroy function.

Implementors§

Source§

impl DestroyStrategy for NoParams

Source§

impl<Inspect: InspectStrategy, Inner: DestroyStrategy> DestroyStrategy for CheckState<Inspect, Inner>

Source§

impl<RuntimeOrigin, Inner: DestroyStrategy> DestroyStrategy for CheckOrigin<RuntimeOrigin, Inner>