pub struct TaggedInsertStatement {
pub table: TaggedKeyspaceQualifiedName,
pub kind: InsertKind,
pub if_not_exists: bool,
pub using: Option<Tag<Vec<UpdateParameter>>>,
}
Fields§
§table: TaggedKeyspaceQualifiedName
§kind: InsertKind
§if_not_exists: bool
§using: Option<Tag<Vec<UpdateParameter>>>
Trait Implementations§
Source§impl Clone for TaggedInsertStatement
impl Clone for TaggedInsertStatement
Source§fn clone(&self) -> TaggedInsertStatement
fn clone(&self) -> TaggedInsertStatement
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for TaggedInsertStatement
impl<'a> CustomToTokens<'a> for TaggedInsertStatement
Source§impl Debug for TaggedInsertStatement
impl Debug for TaggedInsertStatement
Source§impl From<TaggedInsertStatement> for TaggedDataManipulationStatement
impl From<TaggedInsertStatement> for TaggedDataManipulationStatement
Source§fn from(original: TaggedInsertStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedInsertStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
Source§impl From<TaggedInsertStatement> for TaggedModificationStatement
impl From<TaggedInsertStatement> for TaggedModificationStatement
Source§fn from(original: TaggedInsertStatement) -> TaggedModificationStatement
fn from(original: TaggedInsertStatement) -> TaggedModificationStatement
Converts to this type from the input type.
Source§impl From<TaggedInsertStatement> for TaggedStatement
impl From<TaggedInsertStatement> for TaggedStatement
Source§fn from(v: TaggedInsertStatement) -> Self
fn from(v: TaggedInsertStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for TaggedInsertStatement
impl FromStr for TaggedInsertStatement
Source§impl Parse for TaggedInsertStatement
impl Parse for TaggedInsertStatement
type Output = TaggedInsertStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedInsertStatement
impl PartialEq for TaggedInsertStatement
Source§impl ToTokens for TaggedInsertStatement
impl ToTokens for TaggedInsertStatement
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Eq for TaggedInsertStatement
impl StructuralPartialEq for TaggedInsertStatement
Auto Trait Implementations§
impl Freeze for TaggedInsertStatement
impl RefUnwindSafe for TaggedInsertStatement
impl Send for TaggedInsertStatement
impl Sync for TaggedInsertStatement
impl Unpin for TaggedInsertStatement
impl UnwindSafe for TaggedInsertStatement
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