Struct scyllax_parser::delete::DeleteQuery
source · pub struct DeleteQuery {
pub table: String,
pub conditions: Vec<WhereClause>,
}Expand description
Represents a delete query
Fields§
§table: StringThe table being queried
conditions: Vec<WhereClause>The conditions of the query
Trait Implementations§
source§impl Debug for DeleteQuery
impl Debug for DeleteQuery
source§impl PartialEq for DeleteQuery
impl PartialEq for DeleteQuery
source§fn eq(&self, other: &DeleteQuery) -> bool
fn eq(&self, other: &DeleteQuery) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<'a> TryFrom<&'a str> for DeleteQuery
impl<'a> TryFrom<&'a str> for DeleteQuery
impl StructuralPartialEq for DeleteQuery
Auto Trait Implementations§
impl RefUnwindSafe for DeleteQuery
impl Send for DeleteQuery
impl Sync for DeleteQuery
impl Unpin for DeleteQuery
impl UnwindSafe for DeleteQuery
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