pub enum Line<'a, T: ?Sized> {
Context(&'a T),
Delete(&'a T),
Insert(&'a T),
}
Expand description
A line in either the old file, new file, or both.
A Line
contains the terminating newline character \n
unless it is the final
line in the file and the file does not end with a newline character.
Variants§
Context(&'a T)
A line providing context in the diff which is present in both the old and new file
Delete(&'a T)
A line deleted from the old file
Insert(&'a T)
A line inserted to the new file
Implementations§
Trait Implementations§
impl<T: ?Sized> Copy for Line<'_, T>
impl<'a, T: Eq + ?Sized> Eq for Line<'a, T>
impl<'a, T: ?Sized> StructuralPartialEq for Line<'a, T>
Auto Trait Implementations§
impl<'a, T> Freeze for Line<'a, T>where
T: ?Sized,
impl<'a, T> RefUnwindSafe for Line<'a, T>where
T: RefUnwindSafe + ?Sized,
impl<'a, T> Send for Line<'a, T>
impl<'a, T> Sync for Line<'a, T>
impl<'a, T> Unpin for Line<'a, T>where
T: ?Sized,
impl<'a, T> UnwindSafe for Line<'a, T>where
T: RefUnwindSafe + ?Sized,
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)