Skip to main content

PkGroup

Struct PkGroup 

Source
pub struct PkGroup<Table>(/* private fields */);
Expand description

Type-level GROUP BY marker: the group key is table Table’s single-column primary key.

Produced by the proc-macro IntoGroupBy impl when .group_by(col) is called with a table’s sole primary-key column. Every other column of that table is functionally dependent on its primary key (SQL:1999), so any scalar column of Table may appear in SELECT without being listed in GROUP BY. Columns of other tables (e.g. joined tables) still must be aggregated.

Beyond correctness, grouping by the bare primary key lets the database stream groups off the PK order instead of sorting the full result through a temp structure, which matters for GROUP BY ... ORDER BY pk LIMIT n.

Trait Implementations§

Source§

impl<Table: Clone> Clone for PkGroup<Table>

Source§

fn clone(&self) -> PkGroup<Table>

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<Table: Copy> Copy for PkGroup<Table>

Source§

impl<Table: Debug> Debug for PkGroup<Table>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<Table: Default> Default for PkGroup<Table>

Source§

fn default() -> PkGroup<Table>

Returns the “default value” for a type. Read more
Source§

impl<Scope, Cols, T, Proof> MarkerAggValidFor<PkGroup<T>, Proof> for Scoped<SelectCols<Cols>, Scope>
where Cols: ScalarColumnsIn<PkGroup<T>, Proof>,

Source§

impl<Scope, T> MarkerAggValidFor<PkGroup<T>> for Scoped<SelectStar, Scope>

Source§

impl<Scope, T> MarkerAggValidFor<PkGroup<T>> for Scoped<SelectExpr, Scope>

Source§

impl<Scope, R, T> MarkerAggValidFor<PkGroup<T>> for Scoped<SelectAs<R>, Scope>

Auto Trait Implementations§

§

impl<Table> Freeze for PkGroup<Table>
where PhantomData<Table>: Freeze,

§

impl<Table> RefUnwindSafe for PkGroup<Table>
where PhantomData<Table>: RefUnwindSafe,

§

impl<Table> Send for PkGroup<Table>
where PhantomData<Table>: Send,

§

impl<Table> Sync for PkGroup<Table>
where PhantomData<Table>: Sync,

§

impl<Table> Unpin for PkGroup<Table>
where PhantomData<Table>: Unpin,

§

impl<Table> UnsafeUnpin for PkGroup<Table>
where PhantomData<Table>: UnsafeUnpin,

§

impl<Table> UnwindSafe for PkGroup<Table>
where PhantomData<Table>: UnwindSafe,

Blanket Implementations§

Source§

impl<T> AliasExt for T

Source§

fn alias(self, name: &'static str) -> AliasedExpr<Self>

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<Mk> MarkerAggValidFor<()> for Mk

Source§

impl<Scope> ScopeSatisfies<Nil, ()> for Scope

Source§

impl<E, T> SingleColGroupCheck<PkGroup<T>, PkDependent> for E

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> TypeEq<T> for T