pub trait RobotsTxtClient {
    type Result;
    fn fetch_robots_txt(&self, origin: Origin) -> Self::Result;
}
Expand description

Trait to fetch and parse the robots.txt file. Must be implemented on http-client.

Associated Types

Required methods

Implementations on Foreign Types

Implementors