pub type DoubletsLink = Link<u32>;Expand description
Link type from the upstream doublets crate used as the Rust basis.
Aliased Type§
#[repr(C)]pub struct DoubletsLink {
pub index: u32,
pub source: u32,
pub target: u32,
}Fields§
§index: u32Unique identifier of this link within the store.
source: u32The source (left) endpoint of this link.
target: u32The target (right) endpoint of this link.