pub struct AnalyzeResult {Show 13 fields
pub files_parsed: usize,
pub files_skipped: usize,
pub symbols_found: usize,
pub edges_resolved: usize,
pub chunks_stored: usize,
pub symbols_embedded: usize,
pub chunks_embedded: usize,
pub chunks_pruned: usize,
pub symbols_pruned: usize,
pub enrichment_results: Value,
pub total_insights: usize,
pub top_nodes: Vec<RankedNode>,
pub community_count: usize,
}Expand description
Result of the unified analyze() pipeline.
Fields§
§files_parsed: usize§files_skipped: usize§symbols_found: usize§edges_resolved: usize§chunks_stored: usize§symbols_embedded: usize§chunks_embedded: usize§chunks_pruned: usize§symbols_pruned: usize§enrichment_results: Value§total_insights: usize§top_nodes: Vec<RankedNode>§community_count: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for AnalyzeResult
impl RefUnwindSafe for AnalyzeResult
impl Send for AnalyzeResult
impl Sync for AnalyzeResult
impl Unpin for AnalyzeResult
impl UnsafeUnpin for AnalyzeResult
impl UnwindSafe for AnalyzeResult
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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