Struct scylladb_parse::DeleteStatement 
source · [−]pub struct DeleteStatement {
    pub selections: Option<Vec<SimpleSelection>>,
    pub from: KeyspaceQualifiedName,
    pub using: Option<Vec<UpdateParameter>>,
    pub where_clause: WhereClause,
    pub if_clause: Option<IfClause>,
}Fields
selections: Option<Vec<SimpleSelection>>from: KeyspaceQualifiedNameusing: Option<Vec<UpdateParameter>>where_clause: WhereClauseif_clause: Option<IfClause>Trait Implementations
sourceimpl Clone for DeleteStatement
 
impl Clone for DeleteStatement
sourcefn clone(&self) -> DeleteStatement
 
fn clone(&self) -> DeleteStatement
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 DeleteStatement
 
impl<'a> CustomToTokens<'a> for DeleteStatement
fn to_tokens(&'a self, tokens: &mut TokenStream)
sourceimpl Debug for DeleteStatement
 
impl Debug for DeleteStatement
sourceimpl Display for DeleteStatement
 
impl Display for DeleteStatement
sourceimpl From<DeleteStatement> for DataManipulationStatement
 
impl From<DeleteStatement> for DataManipulationStatement
sourcefn from(original: DeleteStatement) -> DataManipulationStatement
 
fn from(original: DeleteStatement) -> DataManipulationStatement
Converts to this type from the input type.
sourceimpl From<DeleteStatement> for ModificationStatement
 
impl From<DeleteStatement> for ModificationStatement
sourcefn from(original: DeleteStatement) -> ModificationStatement
 
fn from(original: DeleteStatement) -> ModificationStatement
Converts to this type from the input type.
sourceimpl From<DeleteStatement> for Statement
 
impl From<DeleteStatement> for Statement
sourcefn from(v: DeleteStatement) -> Self
 
fn from(v: DeleteStatement) -> Self
Converts to this type from the input type.
sourceimpl FromStr for DeleteStatement
 
impl FromStr for DeleteStatement
sourceimpl KeyspaceExt for DeleteStatement
 
impl KeyspaceExt for DeleteStatement
fn get_keyspace(&self) -> Option<String>
fn set_keyspace(&mut self, keyspace: impl Into<Name>)
fn with_keyspace(self, keyspace: impl Into<Name>) -> Self where
    Self: Sized, 
sourceimpl Parse for DeleteStatement
 
impl Parse for DeleteStatement
type Output = DeleteStatement
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
sourceimpl PartialEq<DeleteStatement> for DeleteStatement
 
impl PartialEq<DeleteStatement> for DeleteStatement
sourcefn eq(&self, other: &DeleteStatement) -> bool
 
fn eq(&self, other: &DeleteStatement) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &DeleteStatement) -> bool
 
fn ne(&self, other: &DeleteStatement) -> bool
This method tests for !=.
sourceimpl ToTokens for DeleteStatement
 
impl ToTokens for DeleteStatement
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
sourceimpl TryInto<DeleteStatement> for Statement
 
impl TryInto<DeleteStatement> for Statement
sourceimpl WhereExt for DeleteStatement
 
impl WhereExt for DeleteStatement
fn iter_where(&self) -> Option<Iter<'_, Relation>>
impl Eq for DeleteStatement
impl StructuralEq for DeleteStatement
impl StructuralPartialEq for DeleteStatement
Auto Trait Implementations
impl RefUnwindSafe for DeleteStatement
impl Send for DeleteStatement
impl Sync for DeleteStatement
impl Unpin for DeleteStatement
impl UnwindSafe for DeleteStatement
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