(&self, string: S)
| 9 | |
| 10 | impl Pattern { |
| 11 | fn state<'a, S: StrDrive>(&self, string: S) -> (Request<'a, S>, State) { |
| 12 | let req = Request::new(string, 0, usize::MAX, self.code, false); |
| 13 | let state = State::default(); |
| 14 | (req, state) |
| 15 | } |
| 16 | } |
| 17 | |
| 18 | #[test] |
no test coverage detected