pub struct CrawlOptions {
pub max_pages: usize,
pub max_depth: usize,
pub respect_robots: bool,
pub use_sitemap: bool,
}Fields§
§max_pages: usize§max_depth: usize§respect_robots: bool§use_sitemap: boolTrait Implementations§
Source§impl Clone for CrawlOptions
impl Clone for CrawlOptions
Source§fn clone(&self) -> CrawlOptions
fn clone(&self) -> CrawlOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CrawlOptions
impl RefUnwindSafe for CrawlOptions
impl Send for CrawlOptions
impl Sync for CrawlOptions
impl Unpin for CrawlOptions
impl UnsafeUnpin for CrawlOptions
impl UnwindSafe for CrawlOptions
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more