pub struct ExpandedGraph {
pub nodes: HashMap<String, ExpandedNode>,
pub edges: Vec<ExpandedEdge>,
pub boundary_inputs: Vec<InputPortSpec>,
pub boundary_outputs: Vec<OutputPortSpec>,
}Expand description
Expansion output. Contains only topology, primitive identity, and authoring trace.
boundary_inputs and boundary_outputs are retained for signature inference only
and must not influence runtime execution.
Fields§
§nodes: HashMap<String, ExpandedNode>§edges: Vec<ExpandedEdge>§boundary_inputs: Vec<InputPortSpec>§boundary_outputs: Vec<OutputPortSpec>Trait Implementations§
Source§impl Clone for ExpandedGraph
impl Clone for ExpandedGraph
Source§fn clone(&self) -> ExpandedGraph
fn clone(&self) -> ExpandedGraph
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 ExpandedGraph
impl Debug for ExpandedGraph
Source§impl PartialEq for ExpandedGraph
impl PartialEq for ExpandedGraph
Source§fn eq(&self, other: &ExpandedGraph) -> bool
fn eq(&self, other: &ExpandedGraph) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExpandedGraph
Auto Trait Implementations§
impl Freeze for ExpandedGraph
impl RefUnwindSafe for ExpandedGraph
impl Send for ExpandedGraph
impl Sync for ExpandedGraph
impl Unpin for ExpandedGraph
impl UnsafeUnpin for ExpandedGraph
impl UnwindSafe for ExpandedGraph
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