[][src]Function indyrs::wallet::fetch_wallet_search_next_records

pub fn fetch_wallet_search_next_records(
    wallet_handle: IndyHandle,
    wallet_search_handle: IndyHandle,
    count: usize
) -> Box<dyn Future<Item = String, Error = IndyError>>

Fetch next records for wallet search.

Not if there are no records this call returns WalletNoRecords error.

Arguments

  • wallet_handle - wallet handle (created by open_wallet)
  • wallet_search_handle - wallet search handle (created by indy_open_wallet_search)
  • count - Count of records to fetch

Returns

  • wallet records json - { totalCount: , // present only if retrieveTotalCount set to true records: [{ // present only if retrieveRecords set to true id: "Some id", type: "Some type", // present only if retrieveType set to true value: "Some value", // present only if retrieveValue set to true tags: , // present only if retrieveTags set to true }], }