2. Sealed segment, dynamic insert is disabled, load vector index is supported
Both Segment types share the same interface, based on `SegmentInterface`, External callers only need to care about the behaviour of the following interface as function declarations and corresponding constructor:
1.`SegmentInterface`
2.`SegmentGrowing`&`CreateGrowingSegment`
3.`SegmentSealed`&`CreateSealedSegment`
Other internal functions and are hidden as implementation details in the following classes:
1.`SegmentInternalInterface`
2.`SegmentGrowingImpl`
3.`SegmentSealedImpl`
In principle, the reusable code logic of growing / sealed is written into the 'SegmentInternalInterface' as far as possible, The different part of two classes contain more different parts