pub enum MigrationRunState {
Complete,
NeedsResume,
}Expand description
MigrationRunState
Bounded migration-execution completion status.
Variants§
Complete
No remaining steps; migration plan is complete at returned cursor.
NeedsResume
Remaining steps exist; rerun the same plan to resume from durable state.
Trait Implementations§
Source§impl Clone for MigrationRunState
impl Clone for MigrationRunState
Source§fn clone(&self) -> MigrationRunState
fn clone(&self) -> MigrationRunState
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 moreSource§impl Debug for MigrationRunState
impl Debug for MigrationRunState
Source§impl PartialEq for MigrationRunState
impl PartialEq for MigrationRunState
impl Copy for MigrationRunState
impl Eq for MigrationRunState
impl StructuralPartialEq for MigrationRunState
Auto Trait Implementations§
impl Freeze for MigrationRunState
impl RefUnwindSafe for MigrationRunState
impl Send for MigrationRunState
impl Sync for MigrationRunState
impl Unpin for MigrationRunState
impl UnsafeUnpin for MigrationRunState
impl UnwindSafe for MigrationRunState
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