pub struct CallGraph {
pub nodes: Vec<CallGraphNode>,
pub edges: Vec<CallGraphEdge>,
pub entry_points: Vec<u64>,
pub unreachable_functions: Vec<u64>,
pub statistics: CallGraphStatistics,
}
Expand description
Call graph analysis results
Fields§
§nodes: Vec<CallGraphNode>
Call graph nodes (functions)
edges: Vec<CallGraphEdge>
Call graph edges (calls)
entry_points: Vec<u64>
Entry point function addresses
unreachable_functions: Vec<u64>
Unreachable function addresses
statistics: CallGraphStatistics
Call graph statistics
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallGraph
impl RefUnwindSafe for CallGraph
impl Send for CallGraph
impl Sync for CallGraph
impl Unpin for CallGraph
impl UnwindSafe for CallGraph
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