Struct gix_diff::blob::DiffLineStats
source · pub struct DiffLineStats {
pub removals: u32,
pub insertions: u32,
pub before: u32,
pub after: u32,
pub similarity: f32,
}
Available on crate feature
blob
only.Expand description
Information about the diff performed to detect similarity.
Fields§
§removals: u32
The amount of lines to remove from the source to get to the destination.
insertions: u32
The amount of lines to add to the source to get to the destination.
before: u32
The amount of lines of the previous state, in the source.
after: u32
The amount of lines of the new state, in the destination.
similarity: f32
A range from 0 to 1.0, where 1.0 is a perfect match and 0.5 is a similarity of 50%.
Similarity is the ratio between all lines in the previous blob and the current blob,
calculated as (old_lines_count - new_lines_count) as f32 / old_lines_count.max(new_lines_count) as f32
.
Trait Implementations§
source§impl Clone for DiffLineStats
impl Clone for DiffLineStats
source§fn clone(&self) -> DiffLineStats
fn clone(&self) -> DiffLineStats
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 moresource§impl Debug for DiffLineStats
impl Debug for DiffLineStats
source§impl Default for DiffLineStats
impl Default for DiffLineStats
source§fn default() -> DiffLineStats
fn default() -> DiffLineStats
Returns the “default value” for a type. Read more
source§impl PartialEq for DiffLineStats
impl PartialEq for DiffLineStats
source§fn eq(&self, other: &DiffLineStats) -> bool
fn eq(&self, other: &DiffLineStats) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for DiffLineStats
impl PartialOrd for DiffLineStats
source§fn partial_cmp(&self, other: &DiffLineStats) -> Option<Ordering>
fn partial_cmp(&self, other: &DiffLineStats) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for DiffLineStats
impl StructuralPartialEq for DiffLineStats
Auto Trait Implementations§
impl Freeze for DiffLineStats
impl RefUnwindSafe for DiffLineStats
impl Send for DiffLineStats
impl Sync for DiffLineStats
impl Unpin for DiffLineStats
impl UnwindSafe for DiffLineStats
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
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
)