pub struct UndoReport {
pub migrations_undone: usize,
pub total_time_ms: i32,
pub details: Vec<UndoDetail>,
}Expand description
Report returned after an undo operation.
Fields§
§migrations_undone: usizeNumber of migrations that were undone.
total_time_ms: i32Total execution time of all undo operations in milliseconds.
details: Vec<UndoDetail>Per-migration details for each undone migration.
Trait Implementations§
Source§impl Debug for UndoReport
impl Debug for UndoReport
Auto Trait Implementations§
impl Freeze for UndoReport
impl RefUnwindSafe for UndoReport
impl Send for UndoReport
impl Sync for UndoReport
impl Unpin for UndoReport
impl UnsafeUnpin for UndoReport
impl UnwindSafe for UndoReport
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