pub struct TaggedUpdateStatement {
pub table: TaggedKeyspaceQualifiedName,
pub using: Option<Tag<Vec<UpdateParameter>>>,
pub set_clause: Tag<Vec<Assignment>>,
pub where_clause: Tag<WhereClause>,
pub if_clause: Option<Tag<IfClause>>,
}
Fields§
§table: TaggedKeyspaceQualifiedName
§using: Option<Tag<Vec<UpdateParameter>>>
§set_clause: Tag<Vec<Assignment>>
§where_clause: Tag<WhereClause>
§if_clause: Option<Tag<IfClause>>
Trait Implementations§
Source§impl Clone for TaggedUpdateStatement
impl Clone for TaggedUpdateStatement
Source§fn clone(&self) -> TaggedUpdateStatement
fn clone(&self) -> TaggedUpdateStatement
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 TaggedUpdateStatement
impl<'a> CustomToTokens<'a> for TaggedUpdateStatement
Source§impl Debug for TaggedUpdateStatement
impl Debug for TaggedUpdateStatement
Source§impl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
impl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
Source§fn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
Source§impl From<TaggedUpdateStatement> for TaggedModificationStatement
impl From<TaggedUpdateStatement> for TaggedModificationStatement
Source§fn from(original: TaggedUpdateStatement) -> TaggedModificationStatement
fn from(original: TaggedUpdateStatement) -> TaggedModificationStatement
Converts to this type from the input type.
Source§impl From<TaggedUpdateStatement> for TaggedStatement
impl From<TaggedUpdateStatement> for TaggedStatement
Source§fn from(v: TaggedUpdateStatement) -> Self
fn from(v: TaggedUpdateStatement) -> Self
Converts to this type from the input type.
Source§impl FromStr for TaggedUpdateStatement
impl FromStr for TaggedUpdateStatement
Source§impl Parse for TaggedUpdateStatement
impl Parse for TaggedUpdateStatement
type Output = TaggedUpdateStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for TaggedUpdateStatement
impl PartialEq for TaggedUpdateStatement
Source§impl ToTokens for TaggedUpdateStatement
impl ToTokens for TaggedUpdateStatement
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 TaggedUpdateStatement
impl StructuralPartialEq for TaggedUpdateStatement
Auto Trait Implementations§
impl Freeze for TaggedUpdateStatement
impl RefUnwindSafe for TaggedUpdateStatement
impl Send for TaggedUpdateStatement
impl Sync for TaggedUpdateStatement
impl Unpin for TaggedUpdateStatement
impl UnwindSafe for TaggedUpdateStatement
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