pub struct GroupByKey {
pub qualifier: Option<String>,
pub name: String,
}Expand description
SQLR-6 — one GROUP BY key: an optionally-qualified column reference
(dept or t.dept). The qualifier matters for joined SELECTs,
where the same column name can exist on several in-scope tables;
the single-table path validates it against the FROM table/alias
(SQLR-14), mirroring projection qualifiers.
Fields§
§qualifier: Option<String>§name: StringTrait Implementations§
Source§impl Clone for GroupByKey
impl Clone for GroupByKey
Source§fn clone(&self) -> GroupByKey
fn clone(&self) -> GroupByKey
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 GroupByKey
impl Debug for GroupByKey
impl Eq for GroupByKey
Source§impl PartialEq for GroupByKey
impl PartialEq for GroupByKey
Source§fn eq(&self, other: &GroupByKey) -> bool
fn eq(&self, other: &GroupByKey) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GroupByKey
Auto Trait Implementations§
impl Freeze for GroupByKey
impl RefUnwindSafe for GroupByKey
impl Send for GroupByKey
impl Sync for GroupByKey
impl Unpin for GroupByKey
impl UnsafeUnpin for GroupByKey
impl UnwindSafe for GroupByKey
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.