pub enum DataModificationStatement {
Insert(InsertStatement),
Delete(DeleteStatement),
Set(SetStatement),
}Expand description
A data modification statement.
Variants§
Insert(InsertStatement)
INSERT statement.
Delete(DeleteStatement)
DELETE statement.
Set(SetStatement)
SET statement.
Trait Implementations§
Source§impl Clone for DataModificationStatement
impl Clone for DataModificationStatement
Source§fn clone(&self) -> DataModificationStatement
fn clone(&self) -> DataModificationStatement
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 DataModificationStatement
impl RefUnwindSafe for DataModificationStatement
impl Send for DataModificationStatement
impl Sync for DataModificationStatement
impl Unpin for DataModificationStatement
impl UnwindSafe for DataModificationStatement
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