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: usizeStarting from 0
hunk_start_line: usizeStarting from 0
input_path: StringThe file being patched path
output_path: StringThe patched file path
lines_count: usizeBetween consequent start_lines
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