pub struct LibDiff {
pub added: Vec<String>,
pub removed: Vec<String>,
pub unchanged: Vec<String>,
}Expand description
A diff for Lib analysis results.
Fields§
§added: Vec<String>§removed: Vec<String>§unchanged: Vec<String>Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LibDiff
impl RefUnwindSafe for LibDiff
impl Send for LibDiff
impl Sync for LibDiff
impl Unpin for LibDiff
impl UnsafeUnpin for LibDiff
impl UnwindSafe for LibDiff
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