pub struct CallGraphNode {
pub name: String,
pub is_recursive: bool,
pub callees: Vec<String>,
}Expand description
A node in the call graph (function definition).
Fields§
§name: String§is_recursive: bool§callees: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for CallGraphNode
impl Clone for CallGraphNode
Source§fn clone(&self) -> CallGraphNode
fn clone(&self) -> CallGraphNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CallGraphNode
impl RefUnwindSafe for CallGraphNode
impl Send for CallGraphNode
impl Sync for CallGraphNode
impl Unpin for CallGraphNode
impl UnsafeUnpin for CallGraphNode
impl UnwindSafe for CallGraphNode
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