We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
And it is required by anyhow in async functions.
To reproduce, try to compile this code
use scraper::Selector; #[tokio::main] async fn main() -> anyhow::Result<()> { let selector = Selector::parse("#top")?; Ok(()) }