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