pub struct RmResult {
pub output: String,
pub success: bool,
}
Expand description
Result from rm command
Fields§
§output: String
Output from the command
success: bool
Whether the operation succeeded
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RmResult
impl RefUnwindSafe for RmResult
impl Send for RmResult
impl Sync for RmResult
impl Unpin for RmResult
impl UnwindSafe for RmResult
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