pub enum PartiQLStatement {
Select(SelectStatement),
Insert(InsertStatement),
Update(UpdateStatement),
Delete(DeleteStatement),
}Expand description
Top-level PartiQL statement
Variants§
Trait Implementations§
Source§impl Clone for PartiQLStatement
impl Clone for PartiQLStatement
Source§fn clone(&self) -> PartiQLStatement
fn clone(&self) -> PartiQLStatement
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 Debug for PartiQLStatement
impl Debug for PartiQLStatement
Source§impl PartialEq for PartiQLStatement
impl PartialEq for PartiQLStatement
impl StructuralPartialEq for PartiQLStatement
Auto Trait Implementations§
impl Freeze for PartiQLStatement
impl RefUnwindSafe for PartiQLStatement
impl Send for PartiQLStatement
impl Sync for PartiQLStatement
impl Unpin for PartiQLStatement
impl UnwindSafe for PartiQLStatement
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