pub enum CrawlerWebhookEvent {
CrawlerStarted,
CrawlerUrlVisited,
CrawlerUrlSkipped,
CrawlerUrlDiscovered,
CrawlerUrlFailed,
CrawlerStopped,
CrawlerCancelled,
CrawlerFinished,
}Expand description
Crawler webhook events.
Variants§
CrawlerStarted
crawler_started.
CrawlerUrlVisited
crawler_url_visited.
CrawlerUrlSkipped
crawler_url_skipped.
CrawlerUrlDiscovered
crawler_url_discovered.
CrawlerUrlFailed
crawler_url_failed.
CrawlerStopped
crawler_stopped.
CrawlerCancelled
crawler_cancelled.
CrawlerFinished
crawler_finished.
Implementations§
Trait Implementations§
Source§impl Clone for CrawlerWebhookEvent
impl Clone for CrawlerWebhookEvent
Source§fn clone(&self) -> CrawlerWebhookEvent
fn clone(&self) -> CrawlerWebhookEvent
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 CrawlerWebhookEvent
impl Debug for CrawlerWebhookEvent
Source§impl<'de> Deserialize<'de> for CrawlerWebhookEvent
impl<'de> Deserialize<'de> for CrawlerWebhookEvent
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 CrawlerWebhookEvent
impl PartialEq for CrawlerWebhookEvent
Source§impl Serialize for CrawlerWebhookEvent
impl Serialize for CrawlerWebhookEvent
impl Copy for CrawlerWebhookEvent
impl Eq for CrawlerWebhookEvent
impl StructuralPartialEq for CrawlerWebhookEvent
Auto Trait Implementations§
impl Freeze for CrawlerWebhookEvent
impl RefUnwindSafe for CrawlerWebhookEvent
impl Send for CrawlerWebhookEvent
impl Sync for CrawlerWebhookEvent
impl Unpin for CrawlerWebhookEvent
impl UnsafeUnpin for CrawlerWebhookEvent
impl UnwindSafe for CrawlerWebhookEvent
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