()
| 6 | |
| 7 | impl<T> Queue<T> { |
| 8 | fn new() -> Self { |
| 9 | Queue{ |
| 10 | list: VecDeque::new(), |
| 11 | } |
| 12 | } |
| 13 | |
| 14 | // Note that this returns a reference to the value |
| 15 | // This is in contrast to dequeue which gives ownership of the value |
nothing calls this directly
no outgoing calls
no test coverage detected