pub struct GraphReport {
pub target: GraphTarget,
pub stats: GraphStats,
pub sccs: Vec<Scc>,
pub diamonds: Vec<Diamond>,
pub bridges: Vec<BridgeEdge>,
pub longest_chains: Vec<ImportChain>,
pub transitive_edges: Vec<TransitiveEdge>,
pub dead_nodes: Vec<String>,
}Expand description
Full graph analysis report.
Fields§
§target: GraphTarget§stats: GraphStats§sccs: Vec<Scc>§diamonds: Vec<Diamond>§bridges: Vec<BridgeEdge>§longest_chains: Vec<ImportChain>§transitive_edges: Vec<TransitiveEdge>§dead_nodes: Vec<String>Nodes with no inbound edges (files/symbols that nothing imports/calls). Sorted alphabetically. Does not include fully isolated nodes (no edges at all).
Trait Implementations§
Source§impl Debug for GraphReport
impl Debug for GraphReport
Source§impl JsonSchema for GraphReport
impl JsonSchema for GraphReport
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl OutputFormatter for GraphReport
impl OutputFormatter for GraphReport
Source§fn format_text(&self) -> String
fn format_text(&self) -> String
Format as minimal text (LLM-optimized, default).
Source§fn format_pretty(&self) -> String
fn format_pretty(&self) -> String
Format as pretty text (human-friendly with colors).
Default implementation falls back to format_text().
Auto Trait Implementations§
impl Freeze for GraphReport
impl RefUnwindSafe for GraphReport
impl Send for GraphReport
impl Sync for GraphReport
impl Unpin for GraphReport
impl UnsafeUnpin for GraphReport
impl UnwindSafe for GraphReport
Blanket Implementations§
Source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
Source§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
Source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata,
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata, ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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> LayoutRaw for T
impl<T> LayoutRaw for T
Source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Returns the layout of the type.
Source§impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
impl<T, N1, N2> Niching<NichedOption<T, N1>> for N2
Source§unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
unsafe fn is_niched(niched: *const NichedOption<T, N1>) -> bool
Returns whether the given value has been niched. Read more
Source§fn resolve_niched(out: Place<NichedOption<T, N1>>)
fn resolve_niched(out: Place<NichedOption<T, N1>>)
Writes data to
out indicating that a T is niched.