Returns true if the internal buffer is empty and will be refilled when calling [`next`]. [`next`]: Self::next
(&self)
| 235 | /// |
| 236 | /// [`next`]: Self::next |
| 237 | pub fn is_buffer_empty(&self) -> bool { |
| 238 | self.offset >= self.initialized |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | /// ```compile_fail |