blob: 5124d3b2a6e20c9c8609ffd0dea733e6e8dac81d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
mod bufferinfo;
mod datetime;
mod message;
mod signedint;
mod string;
mod stringlist;
mod unsignedint;
mod variant;
mod variantlist;
mod variantmap;
pub use bufferinfo::*;
pub use datetime::*;
pub use message::*;
#[allow(unused_imports)]
pub use signedint::*;
#[allow(unused_imports)]
pub use string::*;
pub use stringlist::*;
#[allow(unused_imports)]
pub use unsignedint::*;
pub use variant::*;
pub use variantlist::*;
pub use variantmap::*;
/// Byte Representation of the type used in Variant to identify it
pub const VOID: u32 = 0x00000000;
/// Byte Representation of the type used in Variant to identify it
pub const BOOL: u32 = 0x00000001;
/// Byte Representation of the type used in Variant to identify it
pub const QCHAR: u32 = 0x00000007;
/// Byte Representation of the type used in Variant to identify it
pub const QVARIANT: u32 = 0x00000090;
/// Byte Representation of the type used in Variant to identify it
pub const QVARIANTMAP: u32 = 0x00000008;
/// Byte Representation of the type used in Variant to identify it
pub const QVARIANTLIST: u32 = 0x00000009;
/// Byte Representation of the type used in Variant to identify it
pub const QSTRING: u32 = 0x0000000a;
/// Byte Representation of the type used in Variant to identify it
pub const QSTRINGLIST: u32 = 0x0000000b;
/// Byte Representation of the type used in Variant to identify it
pub const QBYTEARRAY: u32 = 0x0000000c;
/// Byte Representation of the type used in Variant to identify it
pub const QDATE: u32 = 0x0000000e;
/// Byte Representation of the type used in Variant to identify it
pub const QTIME: u32 = 0x0000000f;
/// Byte Representation of the type used in Variant to identify it
pub const QDATETIME: u32 = 0x00000010;
/// Byte Representation of the type used in Variant to identify it
pub const USERTYPE: u32 = 0x0000007f;
// Basic types
/// Byte Representation of the type used in Variant to identify it
pub const LONG: u32 = 0x00000081; // int64_t
/// Byte Representation of the type used in Variant to identify it
pub const INT: u32 = 0x00000002; // int32_t
/// Byte Representation of the type used in Variant to identify it
pub const SHORT: u32 = 0x00000082; // int16_t
/// Byte Representation of the type used in Variant to identify it
pub const CHAR: u32 = 0x00000083; // int8_t
/// Byte Representation of the type used in Variant to identify it
pub const ULONG: u32 = 0x00000084; // uint64_t
/// Byte Representation of the type used in Variant to identify it
pub const UINT: u32 = 0x00000003; // uint32_t
/// Byte Representation of the type used in Variant to identify it
pub const USHORT: u32 = 0x00000085; // uint16_t
/// Byte Representation of the type used in Variant to identify it
pub const UCHAR: u32 = 0x00000086; // uint8_t
|