pub type indyWalletDeleteRecordCb = Option<unsafe extern "C" fn(handle: indy_handle_t, type_: *const c_char, id: *const c_char) -> indy_error_t>;Expand description
Delete an existing record in the wallet storage
#Params storage_handle: opened storage handle (See open handler) type_: record type id: the id of record
Aliased Type§
pub enum indyWalletDeleteRecordCb {
None,
Some(unsafe extern "C" fn(i32, *const i8, *const i8) -> i32),
}