pub trait UserLanguageSource: Send + Sync + Debug {
    // Required method
    fn languages_from_parts<'life0, 'life1, 'async_trait>(
        &'life0 self,
        parts: &'life1 mut Parts
    ) -> Pin<Box<dyn Future<Output = Vec<String>> + Send + 'async_trait>>
       where Self: 'async_trait,
             'life0: 'async_trait,
             'life1: 'async_trait;
}
Expand description

TBD

Required Methods§

source

fn languages_from_parts<'life0, 'life1, 'async_trait>( &'life0 self, parts: &'life1 mut Parts ) -> Pin<Box<dyn Future<Output = Vec<String>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

TBD

Implementors§