tarantool 2.0.0

Tarantool rust bindings
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub const MP_UUID: std::os::raw::c_char = 2;

#[repr(C)]
#[derive(Copy, Clone)]
pub struct tt_uuid {
    pub tl: u32,
    pub tm: u16,
    pub th: u16,
    pub csh: u8,
    pub csl: u8,
    pub n: [u8; 6],
}

extern "C" {
    /// Generate a random uuid (v4)
    pub fn tt_uuid_create(uu: *mut tt_uuid);
}