pub struct QueryCollection(/* private fields */);Expand description
A collection of queries
Implementations§
Trait Implementations§
Source§impl Clone for QueryCollection
impl Clone for QueryCollection
Source§fn clone(&self) -> QueryCollection
fn clone(&self) -> QueryCollection
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 moreSource§impl Debug for QueryCollection
impl Debug for QueryCollection
Source§impl Default for QueryCollection
impl Default for QueryCollection
Source§fn default() -> QueryCollection
fn default() -> QueryCollection
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for QueryCollection
impl<'de> Deserialize<'de> for QueryCollection
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 IntoIterator for QueryCollection
impl IntoIterator for QueryCollection
Source§impl PartialEq for QueryCollection
impl PartialEq for QueryCollection
Source§fn eq(&self, other: &QueryCollection) -> bool
fn eq(&self, other: &QueryCollection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for QueryCollection
impl Serialize for QueryCollection
Source§impl ShouldSkip for QueryCollection
impl ShouldSkip for QueryCollection
Source§fn should_skip(&self) -> bool
fn should_skip(&self) -> bool
Whether a query or a query value can be skipped
Source§fn should_keep(&self) -> bool
fn should_keep(&self) -> bool
Inverse of the condition
impl StructuralPartialEq for QueryCollection
Auto Trait Implementations§
impl Freeze for QueryCollection
impl RefUnwindSafe for QueryCollection
impl Send for QueryCollection
impl Sync for QueryCollection
impl Unpin for QueryCollection
impl UnsafeUnpin for QueryCollection
impl UnwindSafe for QueryCollection
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