pub enum CqlInsertValues {
Values(Vec<CqlExpression>),
Json(String),
}Expand description
INSERT values
Variants§
Trait Implementations§
Source§impl Clone for CqlInsertValues
impl Clone for CqlInsertValues
Source§fn clone(&self) -> CqlInsertValues
fn clone(&self) -> CqlInsertValues
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CqlInsertValues
impl Debug for CqlInsertValues
Source§impl<'de> Deserialize<'de> for CqlInsertValues
impl<'de> Deserialize<'de> for CqlInsertValues
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>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CqlInsertValues
impl PartialEq for CqlInsertValues
Source§fn eq(&self, other: &CqlInsertValues) -> bool
fn eq(&self, other: &CqlInsertValues) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CqlInsertValues
impl Serialize for CqlInsertValues
impl StructuralPartialEq for CqlInsertValues
Auto Trait Implementations§
impl Freeze for CqlInsertValues
impl RefUnwindSafe for CqlInsertValues
impl Send for CqlInsertValues
impl Sync for CqlInsertValues
impl Unpin for CqlInsertValues
impl UnsafeUnpin for CqlInsertValues
impl UnwindSafe for CqlInsertValues
Blanket Implementations§
impl<T> Allocation for T
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