pub trait DirectMigration<NK, EK, NewVersion>: SchemaExt<NK, EK> + Sized{
// Required method
fn migrate(
g: TypedGraph<NK, EK, Self>,
) -> GenericTypedResult<TypedGraph<NK, EK, NewVersion>, NK, EK>;
}
Required Methods§
fn migrate( g: TypedGraph<NK, EK, Self>, ) -> GenericTypedResult<TypedGraph<NK, EK, NewVersion>, NK, EK>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.