pub trait ProfileFetching: Interface + Send + Sync {
    fn get<'life0, 'async_trait>(
        &'life0 self,
        email: EmailDTO
    ) -> Pin<Box<dyn Future<Output = Result<FetchResponseKind<ProfileDTO, EmailDTO>, MappedErrors>> + Send + 'async_trait>>
    where
        Self: 'async_trait,
        'life0: 'async_trait
; }

Required Methods§

Implementors§