pub trait IntoStartRequests {
// Required method
fn into_start_requests(self) -> Result<Vec<Request>, CrawlError>;
}Expand description
A collection of start requests accepted by super::Crawler::run.
Required Methods§
Sourcefn into_start_requests(self) -> Result<Vec<Request>, CrawlError>
fn into_start_requests(self) -> Result<Vec<Request>, CrawlError>
Converts this value into an owned list of requests.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".