pub struct EntryPointSummary {
pub total: usize,
pub by_source: Vec<(String, usize)>,
}Expand description
Summary of detected entry points, grouped by discovery source.
Used to surface entry-point detection status in human and JSON output, so library authors can verify that fallow found the right entry points.
Fields§
§total: usizeTotal number of entry points detected.
by_source: Vec<(String, usize)>Breakdown by source category (e.g., “package.json” -> 3, “plugin” -> 12). Sorted by key for deterministic output.
Trait Implementations§
Source§impl Clone for EntryPointSummary
impl Clone for EntryPointSummary
Source§impl Debug for EntryPointSummary
impl Debug for EntryPointSummary
Auto Trait Implementations§
impl Freeze for EntryPointSummary
impl RefUnwindSafe for EntryPointSummary
impl Send for EntryPointSummary
impl Sync for EntryPointSummary
impl Unpin for EntryPointSummary
impl UnsafeUnpin for EntryPointSummary
impl UnwindSafe for EntryPointSummary
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