pub struct NukeReport {
pub removed_paths: Vec<PathBuf>,
pub removed_mcp_entries: Vec<PathBuf>,
pub removed_units: Vec<String>,
pub killed_pids: Vec<u32>,
pub binary_removed: bool,
pub warnings: Vec<String>,
}Expand description
What a nuke actually did (for –json + operator output).
Fields§
§removed_paths: Vec<PathBuf>§removed_mcp_entries: Vec<PathBuf>§removed_units: Vec<String>§killed_pids: Vec<u32>§binary_removed: bool§warnings: Vec<String>Non-fatal warnings (e.g. a unit that wasn’t installed).
Trait Implementations§
Source§impl Debug for NukeReport
impl Debug for NukeReport
Source§impl Default for NukeReport
impl Default for NukeReport
Source§fn default() -> NukeReport
fn default() -> NukeReport
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for NukeReport
impl RefUnwindSafe for NukeReport
impl Send for NukeReport
impl Sync for NukeReport
impl Unpin for NukeReport
impl UnsafeUnpin for NukeReport
impl UnwindSafe for NukeReport
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