pub struct DeleteQuery {
pub table: String,
pub conditions: Vec<WhereClause>,
}
Expand description
Represents a delete query
Fields§
§table: String
The 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§impl<'a> TryFrom<&'a str> for DeleteQuery
impl<'a> TryFrom<&'a str> for DeleteQuery
impl StructuralPartialEq for DeleteQuery
Auto Trait Implementations§
impl Freeze for DeleteQuery
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