pub struct DiffEntry {
pub name: String,
pub kind: NodeKind,
pub file_path: String,
pub line: u32,
pub visibility: Visibility,
}Expand description
A diff entry representing an added or removed symbol.
Fields§
§name: String§kind: NodeKind§file_path: String§line: u32§visibility: VisibilityTrait Implementations§
Auto Trait Implementations§
impl Freeze for DiffEntry
impl RefUnwindSafe for DiffEntry
impl Send for DiffEntry
impl Sync for DiffEntry
impl Unpin for DiffEntry
impl UnsafeUnpin for DiffEntry
impl UnwindSafe for DiffEntry
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