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

Trait StashStrategy

Source
pub trait StashStrategy {
    type Success;
}
Expand description

A strategy for use in the Stash implementations.

The common stash strategies are:

Required Associated Types§

Source

type Success

This type represents a successful asset stashing. It will be in the Result type of the Stash::stash function.

Implementors§

Source§

impl StashStrategy for NoParams

Source§

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

Source§

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