pub struct NodeInstance {
pub id: NodeId,
pub kind: NodeKind,
pub parameter_bindings: HashMap<String, ParameterBinding>,
}Fields§
§id: NodeId§kind: NodeKind§parameter_bindings: HashMap<String, ParameterBinding>Trait Implementations§
Source§impl Clone for NodeInstance
impl Clone for NodeInstance
Source§fn clone(&self) -> NodeInstance
fn clone(&self) -> NodeInstance
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 NodeInstance
impl Debug for NodeInstance
Source§impl PartialEq for NodeInstance
impl PartialEq for NodeInstance
Source§fn eq(&self, other: &NodeInstance) -> bool
fn eq(&self, other: &NodeInstance) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeInstance
Auto Trait Implementations§
impl Freeze for NodeInstance
impl RefUnwindSafe for NodeInstance
impl Send for NodeInstance
impl Sync for NodeInstance
impl Unpin for NodeInstance
impl UnsafeUnpin for NodeInstance
impl UnwindSafe for NodeInstance
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