pub struct PlanOpsDiff {
pub missing: Vec<PlanOp>,
pub extra: Vec<PlanOp>,
}Expand description
Result of comparing a saved plan’s ops against a freshly-computed list.
Fields§
§missing: Vec<PlanOp>In saved plan but not in fresh (resolved or absorbed remotely).
extra: Vec<PlanOp>In fresh but not in saved plan (new drift since plan).
Implementations§
Trait Implementations§
Source§impl Debug for PlanOpsDiff
impl Debug for PlanOpsDiff
Source§impl Default for PlanOpsDiff
impl Default for PlanOpsDiff
Source§fn default() -> PlanOpsDiff
fn default() -> PlanOpsDiff
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for PlanOpsDiff
impl RefUnwindSafe for PlanOpsDiff
impl Send for PlanOpsDiff
impl Sync for PlanOpsDiff
impl Unpin for PlanOpsDiff
impl UnsafeUnpin for PlanOpsDiff
impl UnwindSafe for PlanOpsDiff
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