pub enum PatchLine {
Context(String),
Remove(String),
Add(String),
}Expand description
A single line in a patch hunk — context, removal, or addition.
Variants§
Context(String)
Unchanged context line (space prefix in unified diff).
Remove(String)
Removed line (- prefix in unified diff).
Add(String)
Added line (+ prefix in unified diff).
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PatchLine
impl<'de> Deserialize<'de> for PatchLine
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PatchLine
impl StructuralPartialEq for PatchLine
Auto Trait Implementations§
impl Freeze for PatchLine
impl RefUnwindSafe for PatchLine
impl Send for PatchLine
impl Sync for PatchLine
impl Unpin for PatchLine
impl UnsafeUnpin for PatchLine
impl UnwindSafe for PatchLine
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.