pub struct CallGraph {
pub functions: HashMap<String, Vec<FunctionNode>>,
pub call_sites: Vec<CallSite>,
}Expand description
Interprocedural Call Graph.
Fields§
§functions: HashMap<String, Vec<FunctionNode>>§call_sites: Vec<CallSite>Implementations§
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 UnsafeUnpin 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