pub struct DataFlowGraph {
pub nodes: GraphNodes,
pub edges: GraphEdges,
pub param_ret_deps: Arg2Ret,
}
Fields§
§nodes: GraphNodes
§edges: GraphEdges
§param_ret_deps: Arg2Ret
Trait Implementations§
Source§impl Clone for DataFlowGraph
impl Clone for DataFlowGraph
Source§fn clone(&self) -> DataFlowGraph
fn clone(&self) -> DataFlowGraph
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 DataFlowGraph
impl RefUnwindSafe for DataFlowGraph
impl Send for DataFlowGraph
impl Sync for DataFlowGraph
impl Unpin for DataFlowGraph
impl UnwindSafe for DataFlowGraph
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