[][src]Struct diesel::pg::DistinctOnClause

pub struct DistinctOnClause<T>(_);

Represents DISTINCT ON (...)

Trait Implementations

impl<T: Clone> Clone for DistinctOnClause<T>[src]

impl<T: Copy> Copy for DistinctOnClause<T>[src]

impl<T: Debug> Debug for DistinctOnClause<T>[src]

impl<T> QueryFragment<Pg> for DistinctOnClause<T> where
    T: QueryFragment<Pg>, 
[src]

impl<T: QueryId> QueryId for DistinctOnClause<T>[src]

type QueryId = DistinctOnClause<<T as QueryId>::QueryId>

A type which uniquely represents Self in a SQL query. Read more

Auto Trait Implementations

impl<T> RefUnwindSafe for DistinctOnClause<T> where
    T: RefUnwindSafe

impl<T> Send for DistinctOnClause<T> where
    T: Send

impl<T> Sync for DistinctOnClause<T> where
    T: Sync

impl<T> Unpin for DistinctOnClause<T> where
    T: Unpin

impl<T> UnwindSafe for DistinctOnClause<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<Conn, DB, T> ExecuteDsl<Conn, DB> for T where
    Conn: Connection<Backend = DB>,
    DB: Backend,
    T: QueryFragment<DB> + QueryId
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoSql for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.