pub enum QueryMode {
ReadOnly,
ReadWrite,
Explain,
DryRun,
}Expand description
Query mode metadata.
Variants§
ReadOnly
Read-only mode.
ReadWrite
Read-write mode.
Explain
Explain or plan-only mode.
DryRun
Dry-run mode.
Trait Implementations§
Source§impl Ord for QueryMode
impl Ord for QueryMode
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 QueryMode
impl PartialOrd for QueryMode
impl Copy for QueryMode
impl Eq for QueryMode
impl StructuralPartialEq for QueryMode
Auto Trait Implementations§
impl Freeze for QueryMode
impl RefUnwindSafe for QueryMode
impl Send for QueryMode
impl Sync for QueryMode
impl Unpin for QueryMode
impl UnsafeUnpin for QueryMode
impl UnwindSafe for QueryMode
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