#[repr(u16)]pub enum QueryErrorKind {
Validate = 0,
Intent = 1,
Plan = 2,
AccessRequirement = 3,
UnorderedPagination = 4,
InvalidContinuationCursor = 5,
NotFound = 6,
NotUnique = 7,
}Expand description
QueryErrorKind
Public query error category.
Variants§
Validate = 0
Intent = 1
Plan = 2
AccessRequirement = 3
UnorderedPagination = 4
InvalidContinuationCursor = 5
NotFound = 6
NotUnique = 7
Trait Implementations§
Source§impl Clone for QueryErrorKind
impl Clone for QueryErrorKind
Source§fn clone(&self) -> QueryErrorKind
fn clone(&self) -> QueryErrorKind
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 QueryErrorKind
Source§impl Debug for QueryErrorKind
impl Debug for QueryErrorKind
impl Eq for QueryErrorKind
Source§impl Hash for QueryErrorKind
impl Hash for QueryErrorKind
Source§impl PartialEq for QueryErrorKind
impl PartialEq for QueryErrorKind
Source§fn eq(&self, other: &QueryErrorKind) -> bool
fn eq(&self, other: &QueryErrorKind) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for QueryErrorKind
Auto Trait Implementations§
impl Freeze for QueryErrorKind
impl RefUnwindSafe for QueryErrorKind
impl Send for QueryErrorKind
impl Sync for QueryErrorKind
impl Unpin for QueryErrorKind
impl UnsafeUnpin for QueryErrorKind
impl UnwindSafe for QueryErrorKind
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