pub struct RepoClustersSummary {
pub total_files: u64,
pub clustered_files: u64,
pub singleton_files: u64,
pub returned_clusters: u64,
pub generated_files: u64,
pub git_commits: u64,
pub git_file_changes: u64,
pub graph_edges: u64,
pub repo_memories: RepoBriefMemoryCounts,
pub scoring_note: String,
}Fields§
§total_files: u64§clustered_files: u64§singleton_files: u64§returned_clusters: u64§generated_files: u64§git_commits: u64§git_file_changes: u64§graph_edges: u64§repo_memories: RepoBriefMemoryCounts§scoring_note: StringTrait Implementations§
Source§impl Debug for RepoClustersSummary
impl Debug for RepoClustersSummary
Auto Trait Implementations§
impl Freeze for RepoClustersSummary
impl RefUnwindSafe for RepoClustersSummary
impl Send for RepoClustersSummary
impl Sync for RepoClustersSummary
impl Unpin for RepoClustersSummary
impl UnsafeUnpin for RepoClustersSummary
impl UnwindSafe for RepoClustersSummary
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> 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