[][src]Trait quick_crawler::scrape::Store

pub trait Store: Send + Sync + 'static {
    fn call<'a>(&'a self, data: Vec<String>) -> BoxFuture<'a, ()>;
}

Required methods

fn call<'a>(&'a self, data: Vec<String>) -> BoxFuture<'a, ()>

Invoke the endpoint within the given context

Loading content...

Implementors

impl<F: Send + Sync + 'static, Fut> Store for F where
    F: Fn(Vec<String>) -> Fut,
    Fut: Future + Send + 'static, 
[src]

Loading content...