pub enum RowsPerMatch {
OneRow,
AllRows(Option<EmptyMatchesMode>),
}Expand description
The ONE ROW PER MATCH / ALL ROWS PER MATCH output cardinality.
A tag enum (no spanned children) — AllRows carries the optional
empty-match mode that only the ALL ROWS form admits.
Variants§
OneRow
ONE ROW PER MATCH — one summary row per match.
AllRows(Option<EmptyMatchesMode>)
ALL ROWS PER MATCH [ SHOW EMPTY MATCHES | OMIT EMPTY MATCHES | WITH UNMATCHED ROWS ] — one row per matched (and optionally unmatched) input
row.
Trait Implementations§
Source§impl Clone for RowsPerMatch
impl Clone for RowsPerMatch
Source§fn clone(&self) -> RowsPerMatch
fn clone(&self) -> RowsPerMatch
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 RowsPerMatch
Source§impl Debug for RowsPerMatch
impl Debug for RowsPerMatch
Source§impl<'de> Deserialize<'de> for RowsPerMatch
impl<'de> Deserialize<'de> for RowsPerMatch
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
impl Eq for RowsPerMatch
Source§impl Hash for RowsPerMatch
impl Hash for RowsPerMatch
Source§impl PartialEq for RowsPerMatch
impl PartialEq for RowsPerMatch
Source§impl Render for RowsPerMatch
impl Render for RowsPerMatch
Source§fn render(&self, ctx: &RenderCtx<'_>, f: &mut Formatter<'_>) -> Result
fn render(&self, ctx: &RenderCtx<'_>, f: &mut Formatter<'_>) -> Result
Return the render for this value.
Source§fn operand_binding_power(&self) -> Option<BindingPower>
fn operand_binding_power(&self) -> Option<BindingPower>
The binding power this node contributes when it appears as an operand, or
None (the default) for a self-delimiting node — an atom, call, or
constructor — that never needs parentheses. Read moreSource§impl Serialize for RowsPerMatch
impl Serialize for RowsPerMatch
impl StructuralPartialEq for RowsPerMatch
Auto Trait Implementations§
impl Freeze for RowsPerMatch
impl RefUnwindSafe for RowsPerMatch
impl Send for RowsPerMatch
impl Sync for RowsPerMatch
impl Unpin for RowsPerMatch
impl UnsafeUnpin for RowsPerMatch
impl UnwindSafe for RowsPerMatch
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