pub enum QueryType {
Select = 1,
MakeTable = 2,
Append = 3,
Update = 4,
Delete = 5,
Crosstab = 6,
Ddl = 7,
Passthrough = 8,
Union = 9,
}Expand description
Query type, determined by the Flag field of the TYPE attribute row.
Variants§
Select = 1
MakeTable = 2
Append = 3
Update = 4
Delete = 5
Crosstab = 6
Ddl = 7
Passthrough = 8
Union = 9
Trait Implementations§
impl Copy 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 UnsafeUnpin 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