feat(proto): GroupId, Orient, n-ary LayoutNode with external-tagged serde

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-06-09 21:11:51 +07:00
parent d859aa8841
commit 114922aaf8
3 changed files with 70 additions and 1 deletions
+9
View File
@@ -16,3 +16,12 @@ impl std::fmt::Display for WorkspaceId {
write!(f, "{}", self.0)
}
}
#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct GroupId(pub String);
impl std::fmt::Display for GroupId {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "{}", self.0)
}
}