pub struct SubgraphNode {
pub id: NodeId,
pub node_type: NodeTypeRef,
pub config: BTreeMap<String, ConfigValue>,
pub child: Option<SubgraphId>,
}Fields§
§id: NodeIdIdentity local to the subgraph; repeated node types remain distinct.
node_type: NodeTypeRef§config: BTreeMap<String, ConfigValue>§child: Option<SubgraphId>Optional nested decomposition invoked by this local node.
Trait Implementations§
Source§impl Clone for SubgraphNode
impl Clone for SubgraphNode
Source§fn clone(&self) -> SubgraphNode
fn clone(&self) -> SubgraphNode
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 SubgraphNode
impl Debug for SubgraphNode
Source§impl<'de> Deserialize<'de> for SubgraphNode
impl<'de> Deserialize<'de> for SubgraphNode
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for SubgraphNode
Source§impl PartialEq for SubgraphNode
impl PartialEq for SubgraphNode
Source§impl Serialize for SubgraphNode
impl Serialize for SubgraphNode
impl StructuralPartialEq for SubgraphNode
Auto Trait Implementations§
impl Freeze for SubgraphNode
impl RefUnwindSafe for SubgraphNode
impl Send for SubgraphNode
impl Sync for SubgraphNode
impl Unpin for SubgraphNode
impl UnsafeUnpin for SubgraphNode
impl UnwindSafe for SubgraphNode
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