pub type indyWalletGetRecordIdCb = Option<unsafe extern "C" fn(handle: indy_handle_t, record_handle: indy_handle_t, id: *mut c_char) -> indy_error_t>;Expand description
Get an id for retrieved wallet storage record
#Params storage_handle: opened storage handle (See open handler) record_handle: retrieved record handle (See get_record handler)
returns: record id Note that pointer lifetime the same as retrieved record lifetime (until record_free called)
Aliased Type§
pub enum indyWalletGetRecordIdCb {
None,
Some(unsafe extern "C" fn(i32, i32, *mut i8) -> i32),
}