pub trait Crawler: Send + Sync {
    fn next<'life0, 'async_trait>(
        &'life0 self,
        _feed_page: FetchedFeedPage
    ) -> Pin<Box<dyn Future<Output = Result<Next>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        Self: 'async_trait
, { ... } fn domains(&self) -> Vec<String>Notable traits for Vec<u8, A>impl<A> Write for Vec<u8, A>where
    A: Allocator,
{ ... } }

Provided Methods

Implementors