pub enum MysqlInsertPriority {
LowPriority,
Delayed,
HighPriority,
}Expand description
Mysql specific syntax
See Mysql documentation See Mysql documentation for more details.
Variants§
LowPriority
LOW_PRIORITY modifier for INSERT/REPLACE.
Delayed
DELAYED modifier for INSERT/REPLACE.
HighPriority
HIGH_PRIORITY modifier for INSERT/REPLACE.
Trait Implementations§
Source§impl Clone for MysqlInsertPriority
impl Clone for MysqlInsertPriority
Source§fn clone(&self) -> MysqlInsertPriority
fn clone(&self) -> MysqlInsertPriority
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 more
Source§impl Debug for MysqlInsertPriority
impl Debug for MysqlInsertPriority
Source§impl<'de> Deserialize<'de> for MysqlInsertPriority
impl<'de> Deserialize<'de> for MysqlInsertPriority
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
where __D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
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,
where 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
Source§fn partial_cmp(&self, other: &MysqlInsertPriority) -> Option<Ordering>
fn partial_cmp(&self, other: &MysqlInsertPriority) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§fn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
Tests less than or equal to (for self and other) and is used by the
<= operator. Read more
Source§impl Serialize for MysqlInsertPriority
impl Serialize for MysqlInsertPriority
Source§impl Visit for MysqlInsertPriority
impl Visit for MysqlInsertPriority
Source§impl VisitMut for MysqlInsertPriority
impl VisitMut for MysqlInsertPriority
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided VisitorMut. Read more
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,
where 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
where T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
where T: for<'de> Deserialize<'de>,