(wb *writeBuffer)
| 264 | } |
| 265 | |
| 266 | func (t fetchResponseTopicV2) writeTo(wb *writeBuffer) { |
| 267 | wb.writeString(t.TopicName) |
| 268 | wb.writeArray(len(t.Partitions), func(i int) { t.Partitions[i].writeTo(wb) }) |
| 269 | } |
| 270 | |
| 271 | type fetchResponsePartitionV2 struct { |
| 272 | Partition int32 |
nothing calls this directly
no test coverage detected