pub struct AnalyzedDiff {
pub stats: WorkStats,
pub tag_stats: HashMap<String, WorkStats>,
}
Fields§
§stats: WorkStats
§tag_stats: HashMap<String, WorkStats>
Implementations§
Source§impl AnalyzedDiff
impl AnalyzedDiff
Trait Implementations§
Source§impl<'a, 'b> Add<&'b AnalyzedDiff> for &'a AnalyzedDiff
impl<'a, 'b> Add<&'b AnalyzedDiff> for &'a AnalyzedDiff
Source§type Output = AnalyzedDiff
type Output = AnalyzedDiff
The resulting type after applying the
+
operator.Source§impl<'b> Add<&'b AnalyzedDiff> for AnalyzedDiff
impl<'b> Add<&'b AnalyzedDiff> for AnalyzedDiff
Source§type Output = AnalyzedDiff
type Output = AnalyzedDiff
The resulting type after applying the
+
operator.Source§fn add(self, other: &'b AnalyzedDiff) -> AnalyzedDiff
fn add(self, other: &'b AnalyzedDiff) -> AnalyzedDiff
Performs the
+
operation. Read moreSource§impl<'a> Add<AnalyzedDiff> for &'a AnalyzedDiff
impl<'a> Add<AnalyzedDiff> for &'a AnalyzedDiff
Source§type Output = AnalyzedDiff
type Output = AnalyzedDiff
The resulting type after applying the
+
operator.Source§impl Add for AnalyzedDiff
impl Add for AnalyzedDiff
Source§type Output = AnalyzedDiff
type Output = AnalyzedDiff
The resulting type after applying the
+
operator.Source§fn add(self, other: AnalyzedDiff) -> AnalyzedDiff
fn add(self, other: AnalyzedDiff) -> AnalyzedDiff
Performs the
+
operation. Read moreSource§impl<'a> AddAssign<&'a AnalyzedDiff> for AnalyzedDiff
impl<'a> AddAssign<&'a AnalyzedDiff> for AnalyzedDiff
Source§fn add_assign(&mut self, other: &'a AnalyzedDiff)
fn add_assign(&mut self, other: &'a AnalyzedDiff)
Performs the
+=
operation. Read moreSource§impl AddAssign for AnalyzedDiff
impl AddAssign for AnalyzedDiff
Source§fn add_assign(&mut self, other: AnalyzedDiff)
fn add_assign(&mut self, other: AnalyzedDiff)
Performs the
+=
operation. Read moreSource§impl Clone for AnalyzedDiff
impl Clone for AnalyzedDiff
Source§fn clone(&self) -> AnalyzedDiff
fn clone(&self) -> AnalyzedDiff
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 AnalyzedDiff
impl Debug for AnalyzedDiff
Source§impl Default for AnalyzedDiff
impl Default for AnalyzedDiff
Source§impl<'de> Deserialize<'de> for AnalyzedDiff
impl<'de> Deserialize<'de> for AnalyzedDiff
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
Source§impl PartialEq for AnalyzedDiff
impl PartialEq for AnalyzedDiff
Source§impl Serialize for AnalyzedDiff
impl Serialize for AnalyzedDiff
impl StructuralPartialEq for AnalyzedDiff
Auto Trait Implementations§
impl Freeze for AnalyzedDiff
impl RefUnwindSafe for AnalyzedDiff
impl Send for AnalyzedDiff
impl Sync for AnalyzedDiff
impl Unpin for AnalyzedDiff
impl UnwindSafe for AnalyzedDiff
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