pub enum QueryType {
Create,
Select,
Insert,
Update,
Delete,
}
Expand description
Query Type (CREATE, SELECT, etc.)
Variants§
Create
Create a new table
Select
Select data from a table
Insert
Insert data into a table (not implemented)
Update
Update data in a table (not implemented)
Delete
Delete data from a table (not implemented)
Trait Implementations§
source§impl PartialEq for QueryType
impl PartialEq for QueryType
impl Eq for QueryType
impl StructuralPartialEq for QueryType
Auto Trait Implementations§
impl Freeze for QueryType
impl RefUnwindSafe for QueryType
impl Send for QueryType
impl Sync for QueryType
impl Unpin for QueryType
impl UnwindSafe for QueryType
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