pub trait MigrationStore {
// Required method
fn changelogs(&self) -> Vec<ChangelogFile>;
}Expand description
Struct storing the changelogs needed for the migrations
Implementations of this trait will usually be generated by the migrations macro, but can
also be created manually.
Required Methods§
fn changelogs(&self) -> Vec<ChangelogFile>
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".