Struct diesel::expression::dsl::Max [] [src]

pub struct Max<T> {
    // some fields omitted
}

Trait Implementations

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

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

fn clone(&self) -> Max<T>

Returns a copy of the value. Read more

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

Performs copy-assignment from source. Read more

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

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.

impl<T: Expression> Expression for Max<T>
[src]

type SqlType = T::SqlType

impl<T, DB> QueryFragment<DB> for Max<T> where T: Expression + QueryFragment<DB>, DB: Backend + HasSqlType<T::SqlType>
[src]

fn to_sql(&self, out: &mut DB::QueryBuilder) -> BuildQueryResult

impl<T: Expression, QS> SelectableExpression<QS> for Max<T>
[src]