namespace Capnp { /// /// Helper struct to represent the tuple (segment index, offset) /// public struct SegmentSlice { /// /// Segment index /// public uint SegmentIndex; /// /// Word offset within segment /// public int Offset; } }