pub struct ToolsDiff {
pub added: Vec<String>,
pub removed: Vec<String>,
pub total_before: usize,
pub total_after: usize,
}Expand description
Tool registry diff.
Fields§
§added: Vec<String>§removed: Vec<String>§total_before: usize§total_after: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for ToolsDiff
impl RefUnwindSafe for ToolsDiff
impl Send for ToolsDiff
impl Sync for ToolsDiff
impl Unpin for ToolsDiff
impl UnsafeUnpin for ToolsDiff
impl UnwindSafe for ToolsDiff
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