#[repr(u32)]
pub enum mysql_enum_shutdown_level {
SHUTDOWN_DEFAULT,
SHUTDOWN_WAIT_CONNECTIONS,
SHUTDOWN_WAIT_TRANSACTIONS,
SHUTDOWN_WAIT_UPDATES,
SHUTDOWN_WAIT_ALL_BUFFERS,
SHUTDOWN_WAIT_CRITICAL_BUFFERS,
KILL_QUERY,
KILL_CONNECTION,
}
Variants§
SHUTDOWN_DEFAULT
SHUTDOWN_WAIT_CONNECTIONS
SHUTDOWN_WAIT_TRANSACTIONS
SHUTDOWN_WAIT_UPDATES
SHUTDOWN_WAIT_ALL_BUFFERS
SHUTDOWN_WAIT_CRITICAL_BUFFERS
KILL_QUERY
KILL_CONNECTION
Trait Implementations§
source§impl Clone for mysql_enum_shutdown_level
impl Clone for mysql_enum_shutdown_level
source§fn clone(&self) -> mysql_enum_shutdown_level
fn clone(&self) -> mysql_enum_shutdown_level
Returns a copy 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 mysql_enum_shutdown_level
impl Debug for mysql_enum_shutdown_level
source§impl Hash for mysql_enum_shutdown_level
impl Hash for mysql_enum_shutdown_level
source§impl PartialEq<mysql_enum_shutdown_level> for mysql_enum_shutdown_level
impl PartialEq<mysql_enum_shutdown_level> for mysql_enum_shutdown_level
source§fn eq(&self, other: &mysql_enum_shutdown_level) -> bool
fn eq(&self, other: &mysql_enum_shutdown_level) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.