pub trait CreateStrategy {
type Success;
}
Expand description
A strategy for use in the Create
implementations.
The common “create” strategy is WithConfig
.
Required Associated Types§
Sourcetype Success
type Success
This type represents a successful asset creation.
It will be in the Result
type of the Create::create
function.