Check if the buffer is empty
(&self)
| 347 | |
| 348 | /// Check if the buffer is empty |
| 349 | pub fn is_empty(&self) -> bool { |
| 350 | self.buffer().is_empty() |
| 351 | } |
| 352 | |
| 353 | /// Get the capacity of the buffer |
| 354 | pub fn capacity(&self) -> usize { |
no test coverage detected