mirror of
https://github.com/FabInfra/capnproto-dotnetcore_Runtime.git
synced 2025-03-12 06:41:50 +01:00
18 lines
388 B
C#
18 lines
388 B
C#
namespace Capnp
|
|
{
|
|
/// <summary>
|
|
/// Helper struct to represent the tuple (segment index, offset)
|
|
/// </summary>
|
|
public struct SegmentSlice
|
|
{
|
|
/// <summary>
|
|
/// Segment index
|
|
/// </summary>
|
|
public uint SegmentIndex;
|
|
|
|
/// <summary>
|
|
/// Word offset within segment
|
|
/// </summary>
|
|
public int Offset;
|
|
}
|
|
} |