pub enum ApplyMode {
ValidateOnly,
Apply,
DryRunDiff,
}Expand description
How edits should be applied.
Variants§
ValidateOnly
Validate only, do not change the DACL.
Apply
Apply edits and return the updated DACL.
DryRunDiff
Compute and return a diff with no mutation.
Trait Implementations§
impl Copy for ApplyMode
impl Eq for ApplyMode
impl StructuralPartialEq 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 UnsafeUnpin 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