pub trait DestroyStrategy {
type Success;
}Expand description
A strategy for use in the Destroy implementations.
The common destroy strategies are:
Required Associated Types§
Sourcetype Success
type Success
This type represents a successful asset destruction.
It will be in the Result type of the Destroy::destroy function.