CommentRetriever

Trait CommentRetriever 

Source
pub trait CommentRetriever {
    // Required method
    fn get_comments<'life0, 'async_trait>(
        &'life0 self,
        sort: Option<CommentOption>,
    ) -> Pin<Box<dyn Future<Output = Result<ListingArray, Error>> + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait;
}

Required Methods§

Source

fn get_comments<'life0, 'async_trait>( &'life0 self, sort: Option<CommentOption>, ) -> Pin<Box<dyn Future<Output = Result<ListingArray, Error>> + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait,

Implementors§