Trait lemmy_apub::CommunityType[][src]

pub trait CommunityType {
    fn followers_url(&self) -> Url;
fn get_follower_inboxes<'life0, 'life1, 'life2, 'async_trait>(
        &'life0 self,
        pool: &'life1 DbPool,
        settings: &'life2 Settings
    ) -> Pin<Box<dyn Future<Output = Result<Vec<Url>, LemmyError>> + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        Self: 'async_trait
; }

Required methods

Implementations on Foreign Types

For a given community, returns the inboxes of all followers.

Implementors