pub struct ScopeCount {
pub name: String,
pub count: usize,
}Expand description
One scope name with the number of commits that declared it.
Fields§
§name: StringThe scope name, e.g. cli.
count: usizeNumber of commits (within the analyzed subjects) that declared it.
Trait Implementations§
Source§impl Clone for ScopeCount
impl Clone for ScopeCount
Source§fn clone(&self) -> ScopeCount
fn clone(&self) -> ScopeCount
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ScopeCount
impl Debug for ScopeCount
Source§impl<'de> Deserialize<'de> for ScopeCount
impl<'de> Deserialize<'de> for ScopeCount
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 ScopeCount
Source§impl PartialEq for ScopeCount
impl PartialEq for ScopeCount
Source§impl Serialize for ScopeCount
impl Serialize for ScopeCount
impl StructuralPartialEq for ScopeCount
Auto Trait Implementations§
impl Freeze for ScopeCount
impl RefUnwindSafe for ScopeCount
impl Send for ScopeCount
impl Sync for ScopeCount
impl Unpin for ScopeCount
impl UnsafeUnpin for ScopeCount
impl UnwindSafe for ScopeCount
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,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.