(&self)
| 18 | |
| 19 | impl Response { |
| 20 | pub fn title(&self) -> Option<String> { |
| 21 | let sel = Selector::parse("title").expect("failed to parse selector"); |
| 22 | self.body |
| 23 | .select(&sel) |
| 24 | .next() |
| 25 | .map(|element| element.inner_html()) |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | impl Page { |