(&mut self)
| 94 | } |
| 95 | |
| 96 | fn reset(&mut self) -> Result<()> { |
| 97 | if let Some(ref mut current_buffer) = self.current_buffer { |
| 98 | current_buffer.reset() |
| 99 | } else { |
| 100 | Ok(()) |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | fn is_synchronous(&self) -> bool { |
| 105 | if let Some(ref buffer) = self.current_buffer { |
no outgoing calls
no test coverage detected