We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67cafad commit 1a39a61Copy full SHA for 1a39a61
src/databases/database.rs
@@ -143,7 +143,7 @@ pub trait Database: Sync + Send {
143
/// Get `UserProfile` from `username`.
144
async fn get_user_profile_from_username(&self, username: &str) -> Result<UserProfile, Error>;
145
146
- /// Get all user profiles in a paginated form as `UserProfilesResponse`.
+ /// Get all user profiles in a paginated and sorted form as `UserProfilesResponse` from `search`,`offset` and `page_size`.
147
async fn get_user_profiles_search_paginated(
148
&self,
149
search: &Option<String>,
0 commit comments