pub struct DiffLine {
pub line_type: DiffLineType,
pub content: String,
pub line_number_old: Option<usize>,
pub line_number_new: Option<usize>,
}
Fields§
§line_type: DiffLineType
§content: String
§line_number_old: Option<usize>
§line_number_new: Option<usize>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for DiffLine
impl RefUnwindSafe for DiffLine
impl Send for DiffLine
impl Sync for DiffLine
impl Unpin for DiffLine
impl UnwindSafe for DiffLine
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