pub struct RemoveResult {
pub removed: Vec<String>,
pub warnings: Vec<String>,
}Expand description
The result of a remove operation.
Fields§
§removed: Vec<String>Plugin names that were successfully removed from the marketplace.
warnings: Vec<String>Non-fatal warnings (e.g., directory delete failures).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RemoveResult
impl RefUnwindSafe for RemoveResult
impl Send for RemoveResult
impl Sync for RemoveResult
impl Unpin for RemoveResult
impl UnsafeUnpin for RemoveResult
impl UnwindSafe for RemoveResult
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