Skip to main content

kmp_application/memory/
neighborhood_link.rs

1/// Indices address stored items in this packet, not canonical memory refs.
2#[derive(Debug, Clone, PartialEq, Eq, serde::Serialize)]
3pub struct NeighborhoodLink {
4    pub from: usize,
5    pub rel: String,
6    pub to: usize,
7}