pub enum MysqlInsertPriority {
LowPriority,
Delayed,
HighPriority,
}
Expand description
Mysql specific syntax
See Mysql documentation See Mysql documentation for more details.
Variants§
Trait Implementations§
Source§impl Clone for MysqlInsertPriority
impl Clone for MysqlInsertPriority
Source§fn clone(&self) -> MysqlInsertPriority
fn clone(&self) -> MysqlInsertPriority
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 MysqlInsertPriority
impl Debug for MysqlInsertPriority
Source§impl Display for MysqlInsertPriority
impl Display for MysqlInsertPriority
Source§impl Hash for MysqlInsertPriority
impl Hash for MysqlInsertPriority
Source§impl Ord for MysqlInsertPriority
impl Ord for MysqlInsertPriority
Source§fn cmp(&self, other: &MysqlInsertPriority) -> Ordering
fn cmp(&self, other: &MysqlInsertPriority) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for MysqlInsertPriority
impl PartialEq for MysqlInsertPriority
Source§impl PartialOrd for MysqlInsertPriority
impl PartialOrd for MysqlInsertPriority
impl Copy for MysqlInsertPriority
impl Eq for MysqlInsertPriority
impl StructuralPartialEq for MysqlInsertPriority
Auto Trait Implementations§
impl Freeze for MysqlInsertPriority
impl RefUnwindSafe for MysqlInsertPriority
impl Send for MysqlInsertPriority
impl Sync for MysqlInsertPriority
impl Unpin for MysqlInsertPriority
impl UnwindSafe for MysqlInsertPriority
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