pub struct Entry {
pub start_line: usize,
pub hunk_start_line: usize,
pub input_path: String,
pub output_path: String,
pub lines_count: usize,
}
Fields§
§start_line: usize
Starting from 0
hunk_start_line: usize
Starting from 0
input_path: String
The file being patched path
output_path: String
The patched file path
lines_count: usize
Between consequent start_line
s
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Entry
impl RefUnwindSafe for Entry
impl Send for Entry
impl Sync for Entry
impl Unpin for Entry
impl UnwindSafe for Entry
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