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
#![allow(missing_docs)]
pub const ERR_KK_UNKNOWN: i32 = -1;
pub const ERR_KK_SYS_IO: i32 = -2;
pub const ERR_KK_CREATE_VM: i32 = -50;
pub const ERR_KK_DESTROY_VM: i32 = -51;
pub const ERR_KK_START_VM: i32 = -52;
pub const ERR_KK_STOP_VM: i32 = -53;
pub const ERR_KK_UPDATE_VM: i32 = -54;
pub const ERR_KK_META_CREATE_CACHE: i32 = -100;
pub const ERR_KK_META_REMOVE_CACHE: i32 = -101;
pub const ERR_KK_META_RESTORE_CACHE: i32 = -102;
pub const ERR_KK_STORAGE_CREATE_IMAGE: i32 = -200;
pub const ERR_KK_STORAGE_DESTROY_IMAGE: i32 = -201;
pub const ERR_KK_NET_SET_NET: i32 = -300;
pub const ERR_KK_NET_UNSET_NET: i32 = -301;
pub const ERR_KK_NET_DENY_OUTGOING: i32 = -302;
pub const ERR_KK_NET_ALLOW_OUTGOING: i32 = -303;
pub const ERR_KK_NET_SET_OUTGOING_BLACKLIST: i32 = -303;
pub const ERR_KK_SNAPSHOT_CREATE: i32 = -400;
pub const ERR_KK_SNAPSHOT_DESTROY: i32 = -401;
pub const ERR_KK_SNAPSHOT_APPLY: i32 = -402;