beetry-editor-types 0.2.0

Internal beetry crate. For the public API, check the beetry crate.
Documentation
1
2
3
4
5
6
7
8
9
use serde::{Deserialize, Serialize};

use crate::id::NodeId;

#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Serialize, Deserialize)]
pub struct NodeEdge {
    pub from: NodeId,
    pub to: NodeId,
}