This seems to just recurse to itself. Deleting it leaves everything
still compiling. How odd.
Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
mod scraper_ext {
use super::*;
use scraper::*;
- use scraper::html::{*, Html};
+ use scraper::html::Html;
#[ext(pub)]
impl Html {
- fn select<'a,'b>(&'a self, selector: &'b Selector) -> Select<'a, 'b> {
- self.select(selector)
- }
-
#[throws(as Option)]
fn element<S>(&self, sel: S) -> ElementRef
where S: TryInto<Selector>,