pub struct DryRunPlan {
pub version: u64,
pub name: String,
pub phase: Phase,
pub can_rollback: bool,
}Expand description
A planned migration for dry-run output
Fields§
§version: u64§name: String§phase: Phase§can_rollback: boolTrait Implementations§
Source§impl Clone for DryRunPlan
impl Clone for DryRunPlan
Source§fn clone(&self) -> DryRunPlan
fn clone(&self) -> DryRunPlan
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 DryRunPlan
impl Debug for DryRunPlan
Source§impl PartialEq for DryRunPlan
impl PartialEq for DryRunPlan
impl Eq for DryRunPlan
impl StructuralPartialEq for DryRunPlan
Auto Trait Implementations§
impl Freeze for DryRunPlan
impl RefUnwindSafe for DryRunPlan
impl Send for DryRunPlan
impl Sync for DryRunPlan
impl Unpin for DryRunPlan
impl UnwindSafe for DryRunPlan
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