The current position of the internal cursor for this [`SegmentedReader`]. Note: It's possible for the current position to be greater than the length, as [`std::io::Seek`] allows you to seek past the end of the stream.
(&self)
| 320 | /// Note: It's possible for the current position to be greater than the length, |
| 321 | /// as [`std::io::Seek`] allows you to seek past the end of the stream. |
| 322 | pub fn position(&self) -> usize { |
| 323 | self.overall_ptr |
| 324 | } |
| 325 | } |
| 326 | |
| 327 | impl<const N: usize> io::Read for SegmentedReader<N> { |
no outgoing calls