pub type indyWalletFetchSearchNextRecordsCb = Option<unsafe extern "C" fn(handle: indy_handle_t, search_handle: indy_handle_t, record_handle: indy_handle_t) -> indy_error_t>;Expand description
Get the next wallet storage record handle retrieved by this wallet search.
#Params storage_handle: opened storage handle (See open handler) search_handle: wallet search handle (See search_records handler)
returns: record handle (the same as for get_record handler) Note if no more records WalletNoRecords error will be returned
Aliased Type§
pub enum indyWalletFetchSearchNextRecordsCb {
None,
Some(unsafe extern "C" fn(i32, i32, i32) -> i32),
}