pub struct CallGraphNode {
pub id: String,
pub kind: String,
pub name: String,
pub address: Option<Address>,
pub namespace: Option<String>,
pub library: Option<String>,
pub function_id: Option<String>,
pub symbol_id: Option<String>,
}Expand description
Program call graph node.
Fields§
§id: String§kind: String§name: String§address: Option<Address>§namespace: Option<String>§library: Option<String>§function_id: Option<String>§symbol_id: Option<String>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 (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 CallGraphNode
impl Debug for CallGraphNode
Source§impl<'de> Deserialize<'de> for CallGraphNode
impl<'de> Deserialize<'de> for CallGraphNode
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 CallGraphNode
impl PartialEq for CallGraphNode
Source§fn eq(&self, other: &CallGraphNode) -> bool
fn eq(&self, other: &CallGraphNode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CallGraphNode
impl Serialize for CallGraphNode
impl Eq for CallGraphNode
impl StructuralPartialEq for CallGraphNode
Auto 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