[][src]Struct webapp::schema::sessions::columns::token

pub struct token;

The token column of the sessions table.

Its SQL type is Text.

(Automatically generated by Diesel.)

Trait Implementations

impl<QS> AppearsOnTable<QS> for token where
    QS: AppearsInFromClause<table, Count = Once>, 
[src]

impl Clone for token[src]

impl Column for token[src]

type Table = table

The table which this column belongs to

impl Copy for token[src]

impl Debug for token[src]

impl Default for token[src]

impl<T> EqAll<T> for token where
    T: AsExpression<Text>,
    Eq<token, T>: Expression<SqlType = Bool>, 
[src]

type Output = Eq<Self, T>

impl Expression for token[src]

type SqlType = Text

The type that this expression represents in SQL

impl NonAggregate for token[src]

impl<DB> QueryFragment<DB> for token where
    DB: Backend,
    <table as QuerySource>::FromClause: QueryFragment<DB>, 
[src]

impl QueryId for token[src]

type QueryId = token

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

impl<Left, Right> SelectableExpression<Join<Left, Right, Inner>> for token where
    token: AppearsOnTable<Join<Left, Right, Inner>>,
    Join<Left, Right, Inner>: AppearsInFromClause<table, Count = Once>, 
[src]

impl<Left, Right> SelectableExpression<Join<Left, Right, LeftOuter>> for token where
    token: AppearsOnTable<Join<Left, Right, LeftOuter>>,
    Left: AppearsInFromClause<table, Count = Once>,
    Right: AppearsInFromClause<table, Count = Never>, 
[src]

impl<Join, On> SelectableExpression<JoinOn<Join, On>> for token where
    token: SelectableExpression<Join> + AppearsOnTable<JoinOn<Join, On>>, 
[src]

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

impl SelectableExpression<table> for token[src]

Auto Trait Implementations

impl RefUnwindSafe for token

impl Send for token

impl Sync for token

impl Unpin for token

impl UnwindSafe for token

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<QS, T, DB> BoxableExpression<QS, DB> for T where
    DB: Backend,
    T: Expression + SelectableExpression<QS> + NonAggregate + QueryFragment<DB>, 

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

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

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

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

impl<T> IntoSql for T

impl<T> NullableExpressionMethods for T where
    T: Expression, 

impl<T> PgExpressionMethods for T where
    T: Expression, 

impl<T> PgTextExpressionMethods for T where
    T: Expression,
    <T as Expression>::SqlType: TextOrNullableText, 

impl<T> TextExpressionMethods for T where
    T: Expression,
    <T as Expression>::SqlType: TextOrNullableText, 

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.