pub enum DeleteClause {
DeleteFrom,
Where,
With,
Returning,
Limit,
Delete,
From,
Join,
OrderBy,
Partition,
}Expand description
All available clauses to be used in Delete::raw_before and Delete::raw_after methods on Delete builder
Variants§
DeleteFrom
Where
With
Available on crate features
postgresql and sqlite and mysql only.Returning
Available on crate features
postgresql and sqlite only.Limit
Available on crate feature
mysql only.Delete
Available on crate feature
mysql only.From
Available on crate feature
mysql only.Join
Available on crate feature
mysql only.OrderBy
Available on crate feature
mysql only.Partition
Available on crate feature
mysql only.Trait Implementations§
Source§impl Clone for DeleteClause
impl Clone for DeleteClause
Source§fn clone(&self) -> DeleteClause
fn clone(&self) -> DeleteClause
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 moreSource§impl PartialEq for DeleteClause
impl PartialEq for DeleteClause
impl StructuralPartialEq for DeleteClause
Auto Trait Implementations§
impl Freeze for DeleteClause
impl RefUnwindSafe for DeleteClause
impl Send for DeleteClause
impl Sync for DeleteClause
impl Unpin for DeleteClause
impl UnwindSafe for DeleteClause
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