pub enum QueryKind {
Read,
Write,
Schema,
Maintenance,
Unknown,
}Expand description
Broad query kind.
Variants§
Read
Read/query operation.
Write
Write/mutation operation.
Schema
Schema or metadata operation.
Maintenance
Maintenance operation.
Unknown
Unknown query kind.
Trait Implementations§
Source§impl Ord for QueryKind
impl Ord for QueryKind
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for QueryKind
impl PartialOrd for QueryKind
impl Copy for QueryKind
impl Eq for QueryKind
impl StructuralPartialEq for QueryKind
Auto Trait Implementations§
impl Freeze for QueryKind
impl RefUnwindSafe for QueryKind
impl Send for QueryKind
impl Sync for QueryKind
impl Unpin for QueryKind
impl UnsafeUnpin for QueryKind
impl UnwindSafe for QueryKind
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