pub enum SqlCompileRejectPhase {
CacheKey,
Parse,
Semantic,
}Expand description
SqlCompileRejectPhase
Stable SQL compile rejection buckets. These counters identify the broad admission phase that rejected a SQL command without exposing SQL text, parser diagnostics, field names, or lowered query details.
Variants§
Trait Implementations§
Source§impl Clone for SqlCompileRejectPhase
impl Clone for SqlCompileRejectPhase
Source§fn clone(&self) -> SqlCompileRejectPhase
fn clone(&self) -> SqlCompileRejectPhase
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SqlCompileRejectPhase
Source§impl Debug for SqlCompileRejectPhase
impl Debug for SqlCompileRejectPhase
impl Eq for SqlCompileRejectPhase
Source§impl PartialEq for SqlCompileRejectPhase
impl PartialEq for SqlCompileRejectPhase
Source§fn eq(&self, other: &SqlCompileRejectPhase) -> bool
fn eq(&self, other: &SqlCompileRejectPhase) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for SqlCompileRejectPhase
Auto Trait Implementations§
impl Freeze for SqlCompileRejectPhase
impl RefUnwindSafe for SqlCompileRejectPhase
impl Send for SqlCompileRejectPhase
impl Sync for SqlCompileRejectPhase
impl Unpin for SqlCompileRejectPhase
impl UnsafeUnpin for SqlCompileRejectPhase
impl UnwindSafe for SqlCompileRejectPhase
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