pub enum InsertBody<'bump> {
Select(&'bump Select<'bump>, Option<&'bump Upsert<'bump>>),
DefaultValues,
}Expand description
INSERT body
Variants§
Select(&'bump Select<'bump>, Option<&'bump Upsert<'bump>>)
SELECT or VALUES
DefaultValues
DEFAULT VALUES
Trait Implementations§
Source§impl<'bump> Debug for InsertBody<'bump>
impl<'bump> Debug for InsertBody<'bump>
impl<'bump> Eq for InsertBody<'bump>
Source§impl<'bump> PartialEq for InsertBody<'bump>
impl<'bump> PartialEq for InsertBody<'bump>
Source§fn eq(&self, other: &InsertBody<'bump>) -> bool
fn eq(&self, other: &InsertBody<'bump>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'bump> StructuralPartialEq for InsertBody<'bump>
Auto Trait Implementations§
impl<'bump> !RefUnwindSafe for InsertBody<'bump>
impl<'bump> !Send for InsertBody<'bump>
impl<'bump> !Sync for InsertBody<'bump>
impl<'bump> !UnwindSafe for InsertBody<'bump>
impl<'bump> Freeze for InsertBody<'bump>
impl<'bump> Unpin for InsertBody<'bump>
impl<'bump> UnsafeUnpin for InsertBody<'bump>
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.