List all identities in the store.
(&self)
| 622 | |
| 623 | /// List all identities in the store. |
| 624 | pub fn list(&self) -> Result<Vec<Identity>, IdentityError> { |
| 625 | self.list_filtered(&IdentityFilter::all()) |
| 626 | } |
| 627 | |
| 628 | /// List identities matching a filter. |
| 629 | pub fn list_filtered(&self, filter: &IdentityFilter) -> Result<Vec<Identity>, IdentityError> { |