pub struct RepoCluster {
pub cluster_id: String,
pub name: String,
pub category: String,
pub confidence: String,
pub score: f64,
pub metrics: RepoClusterMetrics,
pub representative_paths: Vec<String>,
pub why: Vec<String>,
pub next_tools: Vec<RepoClusterNextTool>,
}Fields§
§cluster_id: String§name: String§category: String§confidence: String§score: f64§metrics: RepoClusterMetrics§representative_paths: Vec<String>§why: Vec<String>§next_tools: Vec<RepoClusterNextTool>Trait Implementations§
Source§impl Debug for RepoCluster
impl Debug for RepoCluster
Auto Trait Implementations§
impl Freeze for RepoCluster
impl RefUnwindSafe for RepoCluster
impl Send for RepoCluster
impl Sync for RepoCluster
impl Unpin for RepoCluster
impl UnsafeUnpin for RepoCluster
impl UnwindSafe for RepoCluster
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