pub struct BatchCrawlResult {
pub url: String,
pub result: Option<CrawlResult>,
pub error: Option<String>,
}Expand description
Result from a single URL in a batch crawl operation.
Fields§
§url: StringThe seed URL that was crawled.
result: Option<CrawlResult>The crawl result, if successful.
error: Option<String>The error message, if the crawl failed.
Trait Implementations§
Source§impl Clone for BatchCrawlResult
impl Clone for BatchCrawlResult
Source§fn clone(&self) -> BatchCrawlResult
fn clone(&self) -> BatchCrawlResult
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 moreSource§impl Debug for BatchCrawlResult
impl Debug for BatchCrawlResult
Source§impl Default for BatchCrawlResult
impl Default for BatchCrawlResult
Source§fn default() -> BatchCrawlResult
fn default() -> BatchCrawlResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchCrawlResult
impl<'de> Deserialize<'de> for BatchCrawlResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for BatchCrawlResult
impl RefUnwindSafe for BatchCrawlResult
impl Send for BatchCrawlResult
impl Sync for BatchCrawlResult
impl Unpin for BatchCrawlResult
impl UnsafeUnpin for BatchCrawlResult
impl UnwindSafe for BatchCrawlResult
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