(&mut self, buffer_size: usize)
| 75 | |
| 76 | |
| 77 | async fn fill_buffer(&mut self, buffer_size: usize) -> Result<VecDeque<usize>, Terminate> { |
| 78 | |
| 79 | Ok((0..buffer_size) |
| 80 | .into_iter() |
| 81 | .map(|i| i ) |
| 82 | .collect::<VecDeque<usize>>()) |
| 83 | } |
| 84 | } |
| 85 | |
| 86 |
nothing calls this directly
no outgoing calls
no test coverage detected