RecycleSegment

The segments used for the recycler. They contain a next pointer that points to the next recycler segment index. As well as a index for where it is located.

@safe
@recordType("R")
struct RecycleSegment {
Index next;
ulong size;
@exclude
Index index;
}