pub type WrappedUpgradeFunc = Box<dyn Fn(VersionedFile, u8, u8) -> Pin<Box<dyn Future<Output = Result<(), Error>>>>>;
Expand description
WrappedUpgradeFunc is a type that wraps an UpgradeFunc so that the UpgradeFunc can be
used as a function pointer in the call to open_file
.
Aliased Typeยง
pub struct WrappedUpgradeFunc(/* private fields */);