pub enum ApplyMode {
DryRun,
Commit,
}
Expand description
Mode for executing an apply plan.
DryRun
: perform analysis and emit facts with redaction; do not mutate.Commit
: perform mutations, emit full facts, and run optional smoke checks.
Variants§
Trait Implementations§
impl Copy for ApplyMode
Auto Trait Implementations§
impl Freeze for ApplyMode
impl RefUnwindSafe for ApplyMode
impl Send for ApplyMode
impl Sync for ApplyMode
impl Unpin for ApplyMode
impl UnwindSafe for ApplyMode
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