pub struct QueryWithStatsNode {
pub filter: Box<AstNode>,
pub stats: StatsNode,
}Expand description
Query with stats node: filter | stats
Fields§
§filter: Box<AstNode>Filter expression
stats: StatsNodeStats expression
Trait Implementations§
Source§impl Clone for QueryWithStatsNode
impl Clone for QueryWithStatsNode
Source§fn clone(&self) -> QueryWithStatsNode
fn clone(&self) -> QueryWithStatsNode
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 QueryWithStatsNode
impl Debug for QueryWithStatsNode
Source§impl<'de> Deserialize<'de> for QueryWithStatsNode
impl<'de> Deserialize<'de> for QueryWithStatsNode
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 QueryWithStatsNode
impl PartialEq for QueryWithStatsNode
Source§impl Serialize for QueryWithStatsNode
impl Serialize for QueryWithStatsNode
impl StructuralPartialEq for QueryWithStatsNode
Auto Trait Implementations§
impl Freeze for QueryWithStatsNode
impl RefUnwindSafe for QueryWithStatsNode
impl Send for QueryWithStatsNode
impl Sync for QueryWithStatsNode
impl Unpin for QueryWithStatsNode
impl UnwindSafe for QueryWithStatsNode
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