pub enum HunkLine {
Context(String),
Removed(String),
Added(String),
}Expand description
A line in a unified hunk.
Variants§
Trait Implementations§
impl StructuralPartialEq for HunkLine
Auto Trait Implementations§
impl Freeze for HunkLine
impl RefUnwindSafe for HunkLine
impl Send for HunkLine
impl Sync for HunkLine
impl Unpin for HunkLine
impl UnsafeUnpin for HunkLine
impl UnwindSafe for HunkLine
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