Trait scrapman::action::ScrapeAction[][src]

pub trait ScrapeAction: Display + Send + Sync + Debug + Serialize + Deserialize {
    #[must_use]
    fn execute<'life0, 'life1, 'async_trait>(
        &'life0 self,
        context: &'life1 mut ScrapeContext
    ) -> Pin<Box<dyn Future<Output = ScrapeActionResult> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        Self: 'async_trait
; }

Required methods

#[must_use]
fn execute<'life0, 'life1, 'async_trait>(
    &'life0 self,
    context: &'life1 mut ScrapeContext
) -> Pin<Box<dyn Future<Output = ScrapeActionResult> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    Self: 'async_trait, 
[src]

Loading content...

Trait Implementations

impl<'typetag> Serialize for dyn ScrapeAction + 'typetag[src]

impl<'typetag> Serialize for dyn ScrapeAction + Send + 'typetag[src]

impl<'typetag> Serialize for dyn ScrapeAction + Sync + 'typetag[src]

impl<'typetag> Serialize for dyn ScrapeAction + Send + Sync + 'typetag[src]

impl Strictest for dyn ScrapeAction[src]

type Object = dyn ScrapeAction + Send + Sync

Implementors

impl ScrapeAction for ClickElement[src]

impl ScrapeAction for FillElement[src]

impl ScrapeAction for OpenUrl[src]

impl ScrapeAction for Pause[src]

impl ScrapeAction for QueryElement[src]

impl ScrapeAction for SetModelAttribute[src]

impl ScrapeAction for StoreModel[src]

Loading content...