pub enum MySQLCommand {
Show 29 variants
Sleep = 0,
Quit = 1,
InitDB = 2,
Query = 3,
FieldList = 4,
CreateDB = 5,
DropDB = 6,
Refresh = 7,
Shutdown = 8,
Statistics = 9,
ProcessInfo = 10,
Connect = 11,
ProcessKill = 12,
Debug = 13,
Ping = 14,
Time = 15,
DelayedInsert = 16,
ChangeUser = 17,
BinlogDump = 18,
TableDump = 19,
ConnectOut = 20,
RegisterSlave = 21,
StmtPrepare = 22,
StmtExecute = 23,
StmtSendLongData = 24,
StmtClose = 25,
StmtReset = 26,
SetOption = 27,
StmtFetch = 28,
}Expand description
MySQL command types
Variants§
Sleep = 0
Quit = 1
InitDB = 2
Query = 3
FieldList = 4
CreateDB = 5
DropDB = 6
Refresh = 7
Shutdown = 8
Statistics = 9
ProcessInfo = 10
Connect = 11
ProcessKill = 12
Debug = 13
Ping = 14
Time = 15
DelayedInsert = 16
ChangeUser = 17
BinlogDump = 18
TableDump = 19
ConnectOut = 20
RegisterSlave = 21
StmtPrepare = 22
StmtExecute = 23
StmtSendLongData = 24
StmtClose = 25
StmtReset = 26
SetOption = 27
StmtFetch = 28
Trait Implementations§
Source§impl Clone for MySQLCommand
impl Clone for MySQLCommand
Source§fn clone(&self) -> MySQLCommand
fn clone(&self) -> MySQLCommand
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MySQLCommand
impl Debug for MySQLCommand
Source§impl PartialEq for MySQLCommand
impl PartialEq for MySQLCommand
impl StructuralPartialEq for MySQLCommand
Auto Trait Implementations§
impl Freeze for MySQLCommand
impl RefUnwindSafe for MySQLCommand
impl Send for MySQLCommand
impl Sync for MySQLCommand
impl Unpin for MySQLCommand
impl UnwindSafe for MySQLCommand
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more