pub struct DataFlowEdge {
pub from: String,
pub to: String,
pub bytes: u64,
pub label: String,
}Expand description
A directed edge in the data-flow diagram.
Fields§
§from: StringSource node ID.
to: StringTarget node ID.
bytes: u64Bytes transferred along this edge.
label: StringEdge label (e.g. “writes 4096 bytes”).
Trait Implementations§
Source§impl Clone for DataFlowEdge
impl Clone for DataFlowEdge
Source§fn clone(&self) -> DataFlowEdge
fn clone(&self) -> DataFlowEdge
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 DataFlowEdge
impl RefUnwindSafe for DataFlowEdge
impl Send for DataFlowEdge
impl Sync for DataFlowEdge
impl Unpin for DataFlowEdge
impl UnwindSafe for DataFlowEdge
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