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

pub struct star;

Represents table_name.*, which is sometimes needed for efficient count queries. It cannot be used in place of all_columns, and has a SqlType of () to prevent it being used that way

Trait Implementations

impl AppearsOnTable<table> for star[src]

impl Clone for star[src]

impl Copy for star[src]

impl Debug for star[src]

impl Expression for star[src]

type SqlType = ()

The type that this expression represents in SQL

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

impl SelectableExpression<table> for star[src]

Auto Trait Implementations

impl RefUnwindSafe for star

impl Send for star

impl Sync for star

impl Unpin for star

impl UnwindSafe for star

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<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> 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.