pub struct BatchScrapeWebhook {
pub url: String,
pub headers: Option<HashMap<String, String>>,
pub metadata: Option<HashMap<String, Value>>,
pub events: Option<Vec<String>>,
}Fields§
§url: StringWebhook URL to notify when scraping is complete
headers: Option<HashMap<String, String>>Custom headers to send with webhook
metadata: Option<HashMap<String, Value>>Custom metadata to include in webhook payload
events: Option<Vec<String>>Events that trigger the webhook
Trait Implementations§
Source§impl Clone for BatchScrapeWebhook
impl Clone for BatchScrapeWebhook
Source§fn clone(&self) -> BatchScrapeWebhook
fn clone(&self) -> BatchScrapeWebhook
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 BatchScrapeWebhook
impl Debug for BatchScrapeWebhook
Source§impl Default for BatchScrapeWebhook
impl Default for BatchScrapeWebhook
Source§fn default() -> BatchScrapeWebhook
fn default() -> BatchScrapeWebhook
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BatchScrapeWebhook
impl<'de> Deserialize<'de> for BatchScrapeWebhook
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 BatchScrapeWebhook
impl PartialEq for BatchScrapeWebhook
Source§impl Serialize for BatchScrapeWebhook
impl Serialize for BatchScrapeWebhook
impl Eq for BatchScrapeWebhook
impl StructuralPartialEq for BatchScrapeWebhook
Auto Trait Implementations§
impl Freeze for BatchScrapeWebhook
impl RefUnwindSafe for BatchScrapeWebhook
impl Send for BatchScrapeWebhook
impl Sync for BatchScrapeWebhook
impl Unpin for BatchScrapeWebhook
impl UnwindSafe for BatchScrapeWebhook
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.