codama-nodes 0.9.3

Node specifications and helpers for the Codama standard
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use crate::ValueNode;
use codama_nodes_derive::node;

#[node]
pub struct MapEntryValueNode {
    // Children.
    pub key: Box<ValueNode>,
    pub value: Box<ValueNode>,
}

impl From<MapEntryValueNode> for crate::Node {
    fn from(val: MapEntryValueNode) -> Self {
        crate::Node::Value(val.into())
    }
}