List all identities in the store.
(&self)
| 630 | |
| 631 | /// List all identities in the store. |
| 632 | pub fn list(&self) -> Result<Vec<Identity>, IdentityError> { |
| 633 | self.list_filtered(&IdentityFilter::all()) |
| 634 | } |
| 635 | |
| 636 | /// List identities matching a filter. |
| 637 | pub fn list_filtered(&self, filter: &IdentityFilter) -> Result<Vec<Identity>, IdentityError> { |