pub struct RelationCallString {
pub id: u32,
pub caller_node: u32,
pub callee_node: u32,
pub return_node: u32,
pub depth: u32,
}Expand description
Call-string relation row.
Fields§
§id: u32Stable call-string tuple id.
caller_node: u32Caller node id.
callee_node: u32Callee entry node id.
return_node: u32Return-site node id.
depth: u32Call-string stack depth represented by this row.
Trait Implementations§
Source§impl Clone for RelationCallString
impl Clone for RelationCallString
Source§fn clone(&self) -> RelationCallString
fn clone(&self) -> RelationCallString
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 moreimpl Copy for RelationCallString
Source§impl Debug for RelationCallString
impl Debug for RelationCallString
impl Eq for RelationCallString
Source§impl Ord for RelationCallString
impl Ord for RelationCallString
Source§fn cmp(&self, other: &RelationCallString) -> Ordering
fn cmp(&self, other: &RelationCallString) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for RelationCallString
impl PartialEq for RelationCallString
Source§impl PartialOrd for RelationCallString
impl PartialOrd for RelationCallString
impl StructuralPartialEq for RelationCallString
Auto Trait Implementations§
impl Freeze for RelationCallString
impl RefUnwindSafe for RelationCallString
impl Send for RelationCallString
impl Sync for RelationCallString
impl Unpin for RelationCallString
impl UnsafeUnpin for RelationCallString
impl UnwindSafe for RelationCallString
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.