Struct scylladb_parse::TaggedUpdateStatement
source · [−]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: TaggedKeyspaceQualifiedNameusing: Option<Tag<Vec<UpdateParameter>>>set_clause: Tag<Vec<Assignment>>where_clause: Tag<WhereClause>if_clause: Option<Tag<IfClause>>Trait Implementations
sourceimpl Clone for TaggedUpdateStatement
impl Clone for TaggedUpdateStatement
sourcefn clone(&self) -> TaggedUpdateStatement
fn clone(&self) -> TaggedUpdateStatement
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<'a> CustomToTokens<'a> for TaggedUpdateStatement
impl<'a> CustomToTokens<'a> for TaggedUpdateStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for TaggedUpdateStatement
impl Debug for TaggedUpdateStatement
sourceimpl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
impl From<TaggedUpdateStatement> for TaggedDataManipulationStatement
sourcefn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
fn from(original: TaggedUpdateStatement) -> TaggedDataManipulationStatement
Converts to this type from the input type.
sourceimpl From<TaggedUpdateStatement> for TaggedModificationStatement
impl From<TaggedUpdateStatement> for TaggedModificationStatement
sourcefn from(original: TaggedUpdateStatement) -> TaggedModificationStatement
fn from(original: TaggedUpdateStatement) -> TaggedModificationStatement
Converts to this type from the input type.
sourceimpl From<TaggedUpdateStatement> for TaggedStatement
impl From<TaggedUpdateStatement> for TaggedStatement
sourcefn from(v: TaggedUpdateStatement) -> Self
fn from(v: TaggedUpdateStatement) -> Self
Converts to this type from the input type.
sourceimpl FromStr for TaggedUpdateStatement
impl FromStr for TaggedUpdateStatement
sourceimpl Parse for TaggedUpdateStatement
impl Parse for TaggedUpdateStatement
type Output = TaggedUpdateStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<TaggedUpdateStatement> for TaggedUpdateStatement
impl PartialEq<TaggedUpdateStatement> for TaggedUpdateStatement
sourcefn eq(&self, other: &TaggedUpdateStatement) -> bool
fn eq(&self, other: &TaggedUpdateStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &TaggedUpdateStatement) -> bool
fn ne(&self, other: &TaggedUpdateStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for TaggedUpdateStatement
impl ToTokens for TaggedUpdateStatement
sourcefn to_tokens(&self, tokens: &mut TokenStream)
fn to_tokens(&self, tokens: &mut TokenStream)
Write self to the given TokenStream. Read more
sourcefn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Convert self directly into a TokenStream object. Read more
sourcefn into_token_stream(self) -> TokenStream
fn into_token_stream(self) -> TokenStream
Convert self directly into a TokenStream object. Read more
impl Eq for TaggedUpdateStatement
impl StructuralEq for TaggedUpdateStatement
impl StructuralPartialEq for TaggedUpdateStatement
Auto Trait Implementations
impl RefUnwindSafe for TaggedUpdateStatement
impl Send for TaggedUpdateStatement
impl Sync for TaggedUpdateStatement
impl Unpin for TaggedUpdateStatement
impl UnwindSafe for TaggedUpdateStatement
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more