pub enum QueryComplexity {
Simple,
Medium,
Complex,
VeryComplex,
}Expand description
Complexity level of the query
Variants§
Trait Implementations§
Source§impl Clone for QueryComplexity
impl Clone for QueryComplexity
Source§fn clone(&self) -> QueryComplexity
fn clone(&self) -> QueryComplexity
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryComplexity
impl Debug for QueryComplexity
Source§impl<'de> Deserialize<'de> for QueryComplexity
impl<'de> Deserialize<'de> for QueryComplexity
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for QueryComplexity
impl PartialEq for QueryComplexity
Source§impl Serialize for QueryComplexity
impl Serialize for QueryComplexity
impl StructuralPartialEq for QueryComplexity
Auto Trait Implementations§
impl Freeze for QueryComplexity
impl RefUnwindSafe for QueryComplexity
impl Send for QueryComplexity
impl Sync for QueryComplexity
impl Unpin for QueryComplexity
impl UnwindSafe for QueryComplexity
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