mysql_connector/connection/
command.rs

1#[derive(Clone, Copy, Eq, PartialEq, Debug)]
2#[repr(u8)]
3#[allow(dead_code)]
4pub enum Command {
5    Sleep = 0,
6    Quit,
7    InitDb,
8    Query,
9    FieldList,
10    CreateDb,
11    DropDb,
12    Refresh,
13    Deprecated1,
14    Statistics,
15    ProcessInfo,
16    Connect,
17    ProcessKill,
18    Debug,
19    Ping,
20    Time,
21    DelayedInsert,
22    ChangeUser,
23    BinlogDump,
24    TableDump,
25    ConnectOut,
26    RegisterSlave,
27    StmtPrepare,
28    StmtExecute,
29    StmtSendLongData,
30    StmtClose,
31    StmtReset,
32    SetOption,
33    StmtFetch,
34    Daemon,
35    BinlogDumpGTID,
36    ResetConnection,
37    End,
38}