pub struct FileSystemUserInfoRepository { /* private fields */ }Implementations§
Source§impl FileSystemUserInfoRepository
impl FileSystemUserInfoRepository
Trait Implementations§
Source§impl Debug for FileSystemUserInfoRepository
impl Debug for FileSystemUserInfoRepository
Source§impl UserInfoRepository for FileSystemUserInfoRepository
impl UserInfoRepository for FileSystemUserInfoRepository
fn get_user<'life0, 'life1, 'async_trait>(
&'life0 self,
username: &'life1 str,
) -> Pin<Box<dyn Future<Output = Result<Option<Arc<RwLock<UserInfo>>>, CommonError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn list_all_users<'life0, 'async_trait>(
&'life0 self,
) -> Pin<Box<dyn Future<Output = Result<Vec<Arc<RwLock<UserInfo>>>, CommonError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for FileSystemUserInfoRepository
impl !RefUnwindSafe for FileSystemUserInfoRepository
impl Send for FileSystemUserInfoRepository
impl Sync for FileSystemUserInfoRepository
impl Unpin for FileSystemUserInfoRepository
impl !UnwindSafe for FileSystemUserInfoRepository
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more