1 2 3 4 5 6 7 8 9 10 11
use deskc_ids::NodeId; use crate::{content::Content, flat_node::Attributes}; #[derive(Clone, Debug, PartialEq, Eq)] pub struct Node { pub id: NodeId, pub content: Content, pub operands: Vec<Node>, pub attributes: Attributes, }