Skip to content

Instantly share code, notes, and snippets.

@molpopgen
Last active November 16, 2022 23:54
Show Gist options
  • Save molpopgen/f54261c4dd6080ce25a2ddccd10efd73 to your computer and use it in GitHub Desktop.
Save molpopgen/f54261c4dd6080ce25a2ddccd10efd73 to your computer and use it in GitHub Desktop.
edges.rs
pub struct EdgeTableRow {
pub id: EdgeId,
pub left: Position,
pub right: Position,
pub parent: NodeId,
pub child: NodeId,
pub metadata: Option<Vec<u8>>,
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment