pub enum Distinct {
No,
Yes,
On(Slice),
}Expand description
What the DISTINCT clause of a select said.
Variants§
No
No clause, or the no-op SELECT ALL.
Yes
SELECT DISTINCT.
On(Slice)
SELECT DISTINCT ON (a, b), holding the expressions in the parentheses.
Trait Implementations§
impl Copy for Distinct
impl Eq for Distinct
impl StructuralPartialEq for Distinct
Auto Trait Implementations§
impl Freeze for Distinct
impl RefUnwindSafe for Distinct
impl Send for Distinct
impl Sync for Distinct
impl Unpin for Distinct
impl UnsafeUnpin for Distinct
impl UnwindSafe for Distinct
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