pub struct Values<'a> { /* private fields */ }
Expand description
An in-memory temporary table. Can be used in some of the databases in a place of an actual table. Doesn’t work in MySQL 5.7.
Implementations§
Trait Implementations§
Source§impl<'a> From<Values<'a>> for Expression<'a>
impl<'a> From<Values<'a>> for Expression<'a>
Source§impl<'a> IntoIterator for Values<'a>
impl<'a> IntoIterator for Values<'a>
impl<'a> StructuralPartialEq for Values<'a>
Auto Trait Implementations§
impl<'a> Freeze for Values<'a>
impl<'a> RefUnwindSafe for Values<'a>
impl<'a> Send for Values<'a>
impl<'a> Sync for Values<'a>
impl<'a> Unpin for Values<'a>
impl<'a> UnwindSafe for Values<'a>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<'a, T> Conjunctive<'a> for Twhere
T: Into<Expression<'a>>,
impl<'a, T> Conjunctive<'a> for Twhere
T: Into<Expression<'a>>,
Source§fn and<E>(self, other: E) -> ConditionTree<'a>where
E: Into<Expression<'a>>,
fn and<E>(self, other: E) -> ConditionTree<'a>where
E: Into<Expression<'a>>,
Builds an
AND
condition having self
as the left leaf and other
as the right.Source§fn or<E>(self, other: E) -> ConditionTree<'a>where
E: Into<Expression<'a>>,
fn or<E>(self, other: E) -> ConditionTree<'a>where
E: Into<Expression<'a>>,
Builds an
OR
condition having self
as the left leaf and other
as the right.Source§fn not(self) -> ConditionTree<'a>
fn not(self) -> ConditionTree<'a>
Builds a
NOT
condition having self
as the condition.