pub enum MysqlCommand {
Query,
StmtPrepare,
StmtExecute,
StmtClose,
Ping,
Quit,
InitDb,
FieldList,
Other(u8),
}Variants§
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 (const: unstable) · 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
Source§fn eq(&self, other: &MysqlCommand) -> bool
fn eq(&self, other: &MysqlCommand) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MysqlCommand
impl Eq 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 UnsafeUnpin 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