pub struct MigrationStepReport {
pub step_id: u32,
pub duration_ms: Option<u64>,
pub failed: bool,
}Fields§
§step_id: u32§duration_ms: Option<u64>§failed: boolTrait Implementations§
Source§impl Clone for MigrationStepReport
impl Clone for MigrationStepReport
Source§fn clone(&self) -> MigrationStepReport
fn clone(&self) -> MigrationStepReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MigrationStepReport
impl Debug for MigrationStepReport
impl Eq for MigrationStepReport
Source§impl PartialEq for MigrationStepReport
impl PartialEq for MigrationStepReport
impl StructuralPartialEq for MigrationStepReport
Auto Trait Implementations§
impl Freeze for MigrationStepReport
impl RefUnwindSafe for MigrationStepReport
impl Send for MigrationStepReport
impl Sync for MigrationStepReport
impl Unpin for MigrationStepReport
impl UnsafeUnpin for MigrationStepReport
impl UnwindSafe for MigrationStepReport
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