pub struct MigrationResult {
pub applied_count: usize,
pub applied_migrations: Vec<String>,
}Expand description
Result of a migration run
Fields§
§applied_count: usizeNumber of migrations applied
applied_migrations: Vec<String>Tags of applied migrations
Trait Implementations§
Auto Trait Implementations§
impl Freeze for MigrationResult
impl RefUnwindSafe for MigrationResult
impl Send for MigrationResult
impl Sync for MigrationResult
impl Unpin for MigrationResult
impl UnwindSafe for MigrationResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more