pub struct ExpandedNode {
pub runtime_id: String,
pub authoring_path: Vec<(String, NodeId)>,
pub implementation: ImplementationInstance,
pub parameters: HashMap<String, ParameterValue>,
}Expand description
X.9 enforcement: Clusters compile away here.
ExpandedNode holds only ImplementationInstance — no NodeKind enum.
The type system guarantees authoring constructs cannot reach execution.
Fields§
§runtime_id: String§implementation: ImplementationInstance§parameters: HashMap<String, ParameterValue>Trait Implementations§
Source§impl Clone for ExpandedNode
impl Clone for ExpandedNode
Source§fn clone(&self) -> ExpandedNode
fn clone(&self) -> ExpandedNode
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 ExpandedNode
impl Debug for ExpandedNode
Source§impl PartialEq for ExpandedNode
impl PartialEq for ExpandedNode
Source§fn eq(&self, other: &ExpandedNode) -> bool
fn eq(&self, other: &ExpandedNode) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ExpandedNode
Auto Trait Implementations§
impl Freeze for ExpandedNode
impl RefUnwindSafe for ExpandedNode
impl Send for ExpandedNode
impl Sync for ExpandedNode
impl Unpin for ExpandedNode
impl UnsafeUnpin for ExpandedNode
impl UnwindSafe for ExpandedNode
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