pub enum QueryClauseExt {
GroupBy(Expression),
}Expand description
Query clause extension.
Variants§
GroupBy(Expression)
GroupBy clause.
Trait Implementations§
Source§impl Clone for QueryClauseExt
impl Clone for QueryClauseExt
Source§fn clone(&self) -> QueryClauseExt
fn clone(&self) -> QueryClauseExt
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 QueryClauseExt
impl Debug for QueryClauseExt
Source§impl<'de> Deserialize<'de> for QueryClauseExt
impl<'de> Deserialize<'de> for QueryClauseExt
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 QueryClauseExt
impl PartialEq for QueryClauseExt
Source§impl Serialize for QueryClauseExt
impl Serialize for QueryClauseExt
impl StructuralPartialEq for QueryClauseExt
Auto Trait Implementations§
impl Freeze for QueryClauseExt
impl RefUnwindSafe for QueryClauseExt
impl Send for QueryClauseExt
impl Sync for QueryClauseExt
impl Unpin for QueryClauseExt
impl UnsafeUnpin for QueryClauseExt
impl UnwindSafe for QueryClauseExt
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