pub struct Finding {
pub merge: String,
pub path: String,
pub reverted: Vec<String>,
pub injected: Vec<String>,
}Expand description
One path in one merge that removed or added lines neither side did.
Fields§
§merge: StringOid of the merge commit.
path: StringRepository-relative path.
reverted: Vec<String>Lines the landing removed that the proposal never removed.
injected: Vec<String>Lines the landing added that the proposal never added.
Trait Implementations§
impl Eq for Finding
impl StructuralPartialEq for Finding
Auto Trait Implementations§
impl Freeze for Finding
impl RefUnwindSafe for Finding
impl Send for Finding
impl Sync for Finding
impl Unpin for Finding
impl UnsafeUnpin for Finding
impl UnwindSafe for Finding
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