pub struct UninstallOptions {
pub overlay_enabled: bool,
pub overlay_path: Option<PathBuf>,
}Expand description
Per-run knobs. Mirrors install::InstallOptions so the overlay
resolution path is identical — uninstall must see the same effective
link map the installer wrote, otherwise overlay-added entries get
orphaned. The tag knob is deliberately omitted: uninstall never
writes a backup-run marker.
Fields§
§overlay_enabled: bool§overlay_path: Option<PathBuf>Trait Implementations§
Source§impl Clone for UninstallOptions
impl Clone for UninstallOptions
Source§impl Debug for UninstallOptions
impl Debug for UninstallOptions
Auto Trait Implementations§
impl Freeze for UninstallOptions
impl RefUnwindSafe for UninstallOptions
impl Send for UninstallOptions
impl Sync for UninstallOptions
impl Unpin for UninstallOptions
impl UnsafeUnpin for UninstallOptions
impl UnwindSafe for UninstallOptions
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