pub trait CallGraphAnalysis: Analysis {
// Required method
fn get_fn_calls(&self) -> FnCallMap;
}Expand description
This trait provides features related to call graph extraction and analysis.
Required Methods§
Sourcefn get_fn_calls(&self) -> FnCallMap
fn get_fn_calls(&self) -> FnCallMap
Return the call graph.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".