Calculates the size of the payload (excluding metadata/footer).
(&self)
| 1231 | |
| 1232 | /// Calculates the size of the payload (excluding metadata/footer). |
| 1233 | pub fn payload_len(&self) -> u64 { |
| 1234 | // offset + (payload_end - offset) |
| 1235 | self.payload_end_offset - self.offset |
| 1236 | } |
| 1237 | } |
| 1238 | |
| 1239 | // --- STREAMING ITERATOR --- |