pub struct CallTree {
pub root: CallNode,
}Expand description
Represents a complete call graph tree
Fields§
§root: CallNodeThe root node of the tree (the starting function)
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CallTree
impl RefUnwindSafe for CallTree
impl Send for CallTree
impl Sync for CallTree
impl Unpin for CallTree
impl UnwindSafe for CallTree
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