pub struct BatchScrapeRequestBody {
pub urls: Vec<String>,
pub webhook: Webhook,
pub ignore_invalid_urls: Option<bool>,
pub options: ScrapeOptions,
}Fields§
§urls: Vec<String>List of URLs to scrape
webhook: WebhookWebhook configuration for notifications
ignore_invalid_urls: Option<bool>Whether to ignore invalid URLs
options: ScrapeOptionsScraping options
Trait Implementations§
Source§impl Clone for BatchScrapeRequestBody
impl Clone for BatchScrapeRequestBody
Source§fn clone(&self) -> BatchScrapeRequestBody
fn clone(&self) -> BatchScrapeRequestBody
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 BatchScrapeRequestBody
impl Debug for BatchScrapeRequestBody
Source§impl Default for BatchScrapeRequestBody
impl Default for BatchScrapeRequestBody
Source§fn default() -> BatchScrapeRequestBody
fn default() -> BatchScrapeRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchScrapeRequestBody
impl<'de> Deserialize<'de> for BatchScrapeRequestBody
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
Source§impl PartialEq for BatchScrapeRequestBody
impl PartialEq for BatchScrapeRequestBody
Source§impl Serialize for BatchScrapeRequestBody
impl Serialize for BatchScrapeRequestBody
impl Eq for BatchScrapeRequestBody
impl StructuralPartialEq for BatchScrapeRequestBody
Auto Trait Implementations§
impl Freeze for BatchScrapeRequestBody
impl RefUnwindSafe for BatchScrapeRequestBody
impl Send for BatchScrapeRequestBody
impl Sync for BatchScrapeRequestBody
impl Unpin for BatchScrapeRequestBody
impl UnwindSafe for BatchScrapeRequestBody
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.