github.com/Microsoft/azure-vhd-utils@v0.0.0-20230613175315-7c30a3748a1b/vhdcore/block/sector.go (about) 1 package block 2 3 // Sector represents a sector in the 'data section' of a block. 4 // 5 type Sector struct { 6 BlockIndex uint32 7 SectorIndex int64 8 Data []byte 9 }