pub struct CrawlerUrlEntry {
pub url: String,
pub status: String,
pub reason: String,
}Expand description
One entry in the streaming urls list.
Fields§
§url: StringURL.
status: StringStatus (visited/pending/failed/skipped) — echoed from the request.
reason: StringReason for failure/skip (only set for failed/skipped).
Trait Implementations§
Source§impl Clone for CrawlerUrlEntry
impl Clone for CrawlerUrlEntry
Source§fn clone(&self) -> CrawlerUrlEntry
fn clone(&self) -> CrawlerUrlEntry
Returns a duplicate 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 moreAuto Trait Implementations§
impl Freeze for CrawlerUrlEntry
impl RefUnwindSafe for CrawlerUrlEntry
impl Send for CrawlerUrlEntry
impl Sync for CrawlerUrlEntry
impl Unpin for CrawlerUrlEntry
impl UnsafeUnpin for CrawlerUrlEntry
impl UnwindSafe for CrawlerUrlEntry
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