pub struct ParsedDelete {
pub table: String,
pub predicates: Vec<Predicate>,
pub returning: Option<Vec<String>>,
}Expand description
Parsed DELETE statement.
Fields§
§table: String§predicates: Vec<Predicate>§returning: Option<Vec<String>>Trait Implementations§
Source§impl Clone for ParsedDelete
impl Clone for ParsedDelete
Source§fn clone(&self) -> ParsedDelete
fn clone(&self) -> ParsedDelete
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ParsedDelete
impl RefUnwindSafe for ParsedDelete
impl Send for ParsedDelete
impl Sync for ParsedDelete
impl Unpin for ParsedDelete
impl UnwindSafe for ParsedDelete
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