[]Struct sudoku_backend::ops::tables::users::columns::games_total_hard

pub struct games_total_hard;

Trait Implementations

impl Default for games_total_hard

impl Clone for games_total_hard

Performs copy-assignment from source. Read more

impl Copy for games_total_hard

impl Debug for games_total_hard

impl<Rhs> Add<Rhs> for games_total_hard where
    Rhs: AsExpression<<<games_total_hard as Expression>::SqlType as Add>::Rhs>, 

The resulting type after applying the + operator.

impl<Rhs> Sub<Rhs> for games_total_hard where
    Rhs: AsExpression<<<games_total_hard as Expression>::SqlType as Sub>::Rhs>, 

The resulting type after applying the - operator.

impl<Rhs> Mul<Rhs> for games_total_hard where
    Rhs: AsExpression<<<games_total_hard as Expression>::SqlType as Mul>::Rhs>, 

The resulting type after applying the * operator.

impl<Rhs> Div<Rhs> for games_total_hard where
    Rhs: AsExpression<<<games_total_hard as Expression>::SqlType as Div>::Rhs>, 

The resulting type after applying the / operator.

impl Expression for games_total_hard

The type that this expression represents in SQL

impl<QS> AppearsOnTable<QS> for games_total_hard where
    QS: AppearsInFromClause<table, Count = Once>, 

impl SelectableExpression<table> for games_total_hard

impl<Left, Right> SelectableExpression<Join<Left, Right, LeftOuter>> for games_total_hard where
    games_total_hard: AppearsOnTable<Join<Left, Right, LeftOuter>>,
    Left: AppearsInFromClause<table, Count = Once>,
    Right: AppearsInFromClause<table, Count = Never>, 

impl<Left, Right> SelectableExpression<Join<Left, Right, Inner>> for games_total_hard where
    games_total_hard: AppearsOnTable<Join<Left, Right, Inner>>,
    Join<Left, Right, Inner>: AppearsInFromClause<table, Count = Once>, 

impl<Join, On> SelectableExpression<JoinOn<Join, On>> for games_total_hard where
    games_total_hard: SelectableExpression<Join> + AppearsOnTable<JoinOn<Join, On>>, 

impl<From> SelectableExpression<SelectStatement<From, DefaultSelectClause, NoDistinctClause, NoWhereClause, NoOrderClause, NoLimitClause, NoOffsetClause, NoGroupByClause, NoLockingClause>> for games_total_hard where
    games_total_hard: SelectableExpression<From> + AppearsOnTable<SelectStatement<From>>, 

impl Column for games_total_hard

The table which this column belongs to

impl<T> EqAll<T> for games_total_hard where
    T: AsExpression<Integer>,
    Eq<games_total_hard, T>: Expression<SqlType = Bool>, 

impl<DB> QueryFragment<DB> for games_total_hard where
    DB: Backend,
    <table as QuerySource>::FromClause: QueryFragment<DB>, 

Converts this QueryFragment to its SQL representation. Read more

Serializes all bind parameters in this query. Read more

Is this query safe to store in the prepared statement cache? Read more

impl QueryId for games_total_hard

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

Returns the type id of Self::QueryId if Self::HAS_STATIC_QUERY_ID. Returns None otherwise. Read more

impl NonAggregate for games_total_hard

Auto Trait Implementations

impl Send for games_total_hard

impl Sync for games_total_hard

Blanket Implementations

impl<T> From for T
[src]

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

impl<T> Typeable for T where
    T: Any
[src]

Get the TypeId of this object.

impl<QS, T, DB> BoxableExpression for T where
    DB: Backend,
    T: Expression + SelectableExpression<QS> + NonAggregate + QueryFragment<DB>, 
[src]

impl<T> NullableExpressionMethods for T where
    T: Expression
[src]

Converts this potentially non-null expression into one which is treated as nullable. This method has no impact on the generated SQL, and is only used to allow certain comparisons that would otherwise fail to compile. Read more

impl<T> IntoSql for T
[src]

Convert self to an expression for Diesel's query builder. Read more

Convert &self to an expression for Diesel's query builder. Read more

impl<T> ExpressionMethods for T where
    T: Expression,
    <T as Expression>::SqlType: SingleValue, 
[src]

Creates a SQL = expression. Read more

Creates a SQL != expression. Read more

Creates a SQL IN statement. Read more

Deprecated since 1.2.0

: use ne_all instead

Deprecated alias for ne_all Read more

Creates a SQL NOT IN statement. Read more

Creates a SQL IS NULL expression. Read more

Creates a SQL IS NOT NULL expression. Read more

Creates a SQL > expression. Read more

Creates a SQL >= expression. Read more

Creates a SQL < expression. Read more

Creates a SQL <= expression. Read more

Creates a SQL BETWEEN expression using the given lower and upper bounds. Read more

Creates a SQL NOT BETWEEN expression using the given lower and upper bounds. Read more

Creates a SQL DESC expression, representing this expression in descending order. Read more

Creates a SQL ASC expression, representing this expression in ascending order. Read more