pub struct EntryPoints {
pub total: usize,
pub sources: BTreeMap<String, usize>,
}Expand description
Entry-point detection summary embedded in CheckOutput and the combined
envelope.
Fields§
§total: usizeTotal number of detected entry points.
sources: BTreeMap<String, usize>Breakdown of entry points by detection source (e.g., "package.json",
"next.js", "config entry"). Underscored keys so dashboards can
drill into individual sources.
Trait Implementations§
Source§impl Clone for EntryPoints
impl Clone for EntryPoints
Source§impl Debug for EntryPoints
impl Debug for EntryPoints
Source§impl Default for EntryPoints
impl Default for EntryPoints
Auto Trait Implementations§
impl Freeze for EntryPoints
impl RefUnwindSafe for EntryPoints
impl Send for EntryPoints
impl Sync for EntryPoints
impl Unpin for EntryPoints
impl UnsafeUnpin for EntryPoints
impl UnwindSafe for EntryPoints
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