pub struct UnifiedDiffContent {
pub old_title: String,
pub new_title: String,
pub lines: Vec<UnifiedDiffLine>,
}
Expand description
unified diff content
Fields§
§old_title: String
§new_title: String
§lines: Vec<UnifiedDiffLine>
Trait Implementations§
Source§impl Clone for UnifiedDiffContent
impl Clone for UnifiedDiffContent
Source§fn clone(&self) -> UnifiedDiffContent
fn clone(&self) -> UnifiedDiffContent
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 UnifiedDiffContent
impl RefUnwindSafe for UnifiedDiffContent
impl Send for UnifiedDiffContent
impl Sync for UnifiedDiffContent
impl Unpin for UnifiedDiffContent
impl UnwindSafe for UnifiedDiffContent
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