pub struct RepoClusterMetrics {Show 15 fields
pub file_count: u64,
pub total_lines: u64,
pub total_chunks: u64,
pub total_symbols: u64,
pub fan_in: u64,
pub fan_out: u64,
pub commit_touch_count: u64,
pub recent_touch_count: u64,
pub additions: u64,
pub deletions: u64,
pub co_touch_edges: u64,
pub graph_edges: u64,
pub languages: BTreeMap<String, u64>,
pub kinds: BTreeMap<String, u64>,
pub memories: RepoBriefMemoryCounts,
}Fields§
§file_count: u64§total_lines: u64§total_chunks: u64§total_symbols: u64§fan_in: u64§fan_out: u64§commit_touch_count: u64§recent_touch_count: u64§additions: u64§deletions: u64§co_touch_edges: u64§graph_edges: u64§languages: BTreeMap<String, u64>§kinds: BTreeMap<String, u64>§memories: RepoBriefMemoryCountsTrait Implementations§
Source§impl Clone for RepoClusterMetrics
impl Clone for RepoClusterMetrics
Source§fn clone(&self) -> RepoClusterMetrics
fn clone(&self) -> RepoClusterMetrics
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 RepoClusterMetrics
impl Debug for RepoClusterMetrics
Source§impl Default for RepoClusterMetrics
impl Default for RepoClusterMetrics
Source§fn default() -> RepoClusterMetrics
fn default() -> RepoClusterMetrics
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RepoClusterMetrics
impl RefUnwindSafe for RepoClusterMetrics
impl Send for RepoClusterMetrics
impl Sync for RepoClusterMetrics
impl Unpin for RepoClusterMetrics
impl UnsafeUnpin for RepoClusterMetrics
impl UnwindSafe for RepoClusterMetrics
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more