pub struct CrawlerContents {
pub contents: BTreeMap<String, BTreeMap<String, String>>,
pub links: CrawlerContentsLinks,
}Expand description
GET /crawl/{uuid}/contents bulk-JSON envelope.
Fields§
§contents: BTreeMap<String, BTreeMap<String, String>>url → format → content. The API can emit null for a format that
couldn’t be produced for a given URL (e.g. extracted_data on a page
that no template matched); the SDK flattens null → "" so consumers
always get a string and can check emptiness. Mirrors Go’s map[string]string
zero-value semantics.
links: CrawlerContentsLinksPagination links.
Trait Implementations§
Source§impl Clone for CrawlerContents
impl Clone for CrawlerContents
Source§fn clone(&self) -> CrawlerContents
fn clone(&self) -> CrawlerContents
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 moreSource§impl Debug for CrawlerContents
impl Debug for CrawlerContents
Source§impl Default for CrawlerContents
impl Default for CrawlerContents
Source§fn default() -> CrawlerContents
fn default() -> CrawlerContents
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CrawlerContents
impl<'de> Deserialize<'de> for CrawlerContents
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 CrawlerContents
impl RefUnwindSafe for CrawlerContents
impl Send for CrawlerContents
impl Sync for CrawlerContents
impl Unpin for CrawlerContents
impl UnsafeUnpin for CrawlerContents
impl UnwindSafe for CrawlerContents
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