pub struct ProgramCallGraph {
pub nodes: Vec<CallGraphNode>,
pub edges: Vec<CallGraphEdge>,
}Expand description
Program-level call graph.
Fields§
§nodes: Vec<CallGraphNode>§edges: Vec<CallGraphEdge>Trait Implementations§
Source§impl Clone for ProgramCallGraph
impl Clone for ProgramCallGraph
Source§fn clone(&self) -> ProgramCallGraph
fn clone(&self) -> ProgramCallGraph
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProgramCallGraph
impl Debug for ProgramCallGraph
Source§impl<'de> Deserialize<'de> for ProgramCallGraph
impl<'de> Deserialize<'de> for ProgramCallGraph
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ProgramCallGraph
impl PartialEq for ProgramCallGraph
Source§fn eq(&self, other: &ProgramCallGraph) -> bool
fn eq(&self, other: &ProgramCallGraph) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProgramCallGraph
impl Serialize for ProgramCallGraph
impl Eq for ProgramCallGraph
impl StructuralPartialEq for ProgramCallGraph
Auto Trait Implementations§
impl Freeze for ProgramCallGraph
impl RefUnwindSafe for ProgramCallGraph
impl Send for ProgramCallGraph
impl Sync for ProgramCallGraph
impl Unpin for ProgramCallGraph
impl UnsafeUnpin for ProgramCallGraph
impl UnwindSafe for ProgramCallGraph
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