mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2026-02-07 01:01:24 +01:00
update documentation of service::users::Data::iter
This commit is contained in:
parent
d1370f9834
commit
48ecf50973
3 changed files with 6 additions and 6 deletions
|
|
@ -35,7 +35,7 @@ impl service::users::Data for KeyValueDatabase {
|
|||
.is_empty())
|
||||
}
|
||||
|
||||
/// Returns the number of users registered on this server.
|
||||
/// Returns the number of local and remote users known by this server.
|
||||
fn count(&self) -> Result<usize> {
|
||||
Ok(self.userid_password.iter().count())
|
||||
}
|
||||
|
|
@ -84,7 +84,7 @@ impl service::users::Data for KeyValueDatabase {
|
|||
)
|
||||
}
|
||||
|
||||
/// Returns an iterator over all users on this homeserver.
|
||||
/// Returns an iterator over all local and remote users on this homeserver.
|
||||
fn iter<'a>(
|
||||
&'a self,
|
||||
) -> Box<dyn Iterator<Item = Result<OwnedUserId>> + 'a> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue