pub struct RetagDiff {
pub added: Vec<String>,
pub removed: Vec<String>,
}Expand description
The diff produced by ModelService::retag_model when at least one tag
changed.
Fields§
§added: Vec<String>Tags that were newly added.
removed: Vec<String>Tags that were removed (only non-empty on a full = true rebuild).
Implementations§
Trait Implementations§
impl Eq for RetagDiff
impl StructuralPartialEq for RetagDiff
Auto Trait Implementations§
impl Freeze for RetagDiff
impl RefUnwindSafe for RetagDiff
impl Send for RetagDiff
impl Sync for RetagDiff
impl Unpin for RetagDiff
impl UnwindSafe for RetagDiff
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