rust-libindy-wrapper 0.2.13

A library for assisting developers using LibIndy API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

use native::{Error, Handle, CString};

extern {
    #[no_mangle]
    pub fn indy_open_blob_storage_reader(command_handle: Handle,
                                         type_: CString,
                                         config_json: CString,
                                         cb: Option<ResponseI32CB>) -> Error;

    #[no_mangle]
    pub fn indy_open_blob_storage_writer(command_handle: Handle,
                                         type_: CString,
                                         config_json: CString,
                                         cb: Option<ResponseI32CB>) -> Error;
}