pub struct SplitUnifiedDiffLine {
pub pos: Option<String>,
pub text: Option<String>,
}
Expand description
unified diff content lines split into old / new parts
Fields§
§pos: Option<String>
§text: Option<String>
Trait Implementations§
Source§impl Clone for SplitUnifiedDiffLine
impl Clone for SplitUnifiedDiffLine
Source§fn clone(&self) -> SplitUnifiedDiffLine
fn clone(&self) -> SplitUnifiedDiffLine
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for SplitUnifiedDiffLine
impl RefUnwindSafe for SplitUnifiedDiffLine
impl Send for SplitUnifiedDiffLine
impl Sync for SplitUnifiedDiffLine
impl Unpin for SplitUnifiedDiffLine
impl UnwindSafe for SplitUnifiedDiffLine
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