pub struct Edge {
pub source_node_id: usize,
pub target_node_id: usize,
pub edge_type: EdgeType,
pub call_site_span: (usize, usize),
pub return_site_span: Option<(usize, usize)>,
pub sequence_number: usize,
pub returned_value: Option<String>,
pub argument_names: Option<Vec<String>>,
pub event_name: Option<String>,
pub declared_return_type: Option<String>,
}
Fields§
§source_node_id: usize
§target_node_id: usize
§edge_type: EdgeType
§call_site_span: (usize, usize)
§return_site_span: Option<(usize, usize)>
§sequence_number: usize
§returned_value: Option<String>
§argument_names: Option<Vec<String>>
§event_name: Option<String>
§declared_return_type: Option<String>
Trait Implementations§
Source§impl ToDotLabel for Edge
impl ToDotLabel for Edge
fn to_dot_label(&self) -> String
impl StructuralPartialEq for Edge
Auto Trait Implementations§
impl Freeze for Edge
impl RefUnwindSafe for Edge
impl Send for Edge
impl Sync for Edge
impl Unpin for Edge
impl UnwindSafe for Edge
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