pub struct CrawlerUrls {
pub urls: Vec<CrawlerUrlEntry>,
pub page: u32,
pub per_page: u32,
}Expand description
Streaming response from GET /crawl/{uuid}/urls.
Fields§
§urls: Vec<CrawlerUrlEntry>URL entries on this page.
page: u32Page number.
per_page: u32Page size.
Implementations§
Source§impl CrawlerUrls
impl CrawlerUrls
Trait Implementations§
Source§impl Clone for CrawlerUrls
impl Clone for CrawlerUrls
Source§fn clone(&self) -> CrawlerUrls
fn clone(&self) -> CrawlerUrls
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CrawlerUrls
impl Debug for CrawlerUrls
Source§impl Default for CrawlerUrls
impl Default for CrawlerUrls
Source§fn default() -> CrawlerUrls
fn default() -> CrawlerUrls
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CrawlerUrls
impl RefUnwindSafe for CrawlerUrls
impl Send for CrawlerUrls
impl Sync for CrawlerUrls
impl Unpin for CrawlerUrls
impl UnwindSafe for CrawlerUrls
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