pub struct MigrationTestReport {
pub success: bool,
pub steps_completed: Vec<String>,
pub errors: Vec<String>,
}Expand description
Report from running a complete migration test
Fields§
§success: boolWhether the migration test succeeded
steps_completed: Vec<String>Steps that were completed successfully
errors: Vec<String>Errors encountered during the test
Trait Implementations§
Source§impl Clone for MigrationTestReport
impl Clone for MigrationTestReport
Source§fn clone(&self) -> MigrationTestReport
fn clone(&self) -> MigrationTestReport
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for MigrationTestReport
impl RefUnwindSafe for MigrationTestReport
impl Send for MigrationTestReport
impl Sync for MigrationTestReport
impl Unpin for MigrationTestReport
impl UnwindSafe for MigrationTestReport
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