pub enum IqlQuery {
Create(CreateStatement),
Select(SelectStatement),
Update(UpdateStatement),
Delete(DeleteStatement),
Assign(AssignStatement),
Close(CloseStatement),
Reopen(ReopenStatement),
Comment(CommentStatement),
}Variants§
Create(CreateStatement)
Select(SelectStatement)
Update(UpdateStatement)
Delete(DeleteStatement)
Assign(AssignStatement)
Close(CloseStatement)
Reopen(ReopenStatement)
Comment(CommentStatement)
Trait Implementations§
impl StructuralPartialEq for IqlQuery
Auto Trait Implementations§
impl Freeze for IqlQuery
impl RefUnwindSafe for IqlQuery
impl Send for IqlQuery
impl Sync for IqlQuery
impl Unpin for IqlQuery
impl UnwindSafe for IqlQuery
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