pub struct CallGraph {
pub fn_calls: HashMap<DefId, Vec<DefId>>,
}
Expand description
This is the data structure used to store function calls. It contains a HashMap that records the callees of all functions.
Fields§
§fn_calls: HashMap<DefId, Vec<DefId>>
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