[][src]Struct df_st_db::schema::sites_structures::columns::dungeon_type

pub struct dungeon_type;

Trait Implementations

impl<Rhs> Add<Rhs> for dungeon_type where
    Rhs: AsExpression<<<dungeon_type as Expression>::SqlType as Add>::Rhs>, 
[src]

type Output = Add<Self, Rhs::Expression>

The resulting type after applying the + operator.

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

impl Clone for dungeon_type[src]

impl Column for dungeon_type[src]

type Table = table

The table which this column belongs to

impl Copy for dungeon_type[src]

impl Debug for dungeon_type[src]

impl Default for dungeon_type[src]

impl<Rhs> Div<Rhs> for dungeon_type where
    Rhs: AsExpression<<<dungeon_type as Expression>::SqlType as Div>::Rhs>, 
[src]

type Output = Div<Self, Rhs::Expression>

The resulting type after applying the / operator.

impl<T> EqAll<T> for dungeon_type where
    T: AsExpression<Nullable<Int4>>,
    Eq<dungeon_type, T>: Expression<SqlType = Bool>, 
[src]

type Output = Eq<Self, T>

impl Expression for dungeon_type[src]

type SqlType = Nullable<Int4>

The type that this expression represents in SQL

impl<Rhs> Mul<Rhs> for dungeon_type where
    Rhs: AsExpression<<<dungeon_type as Expression>::SqlType as Mul>::Rhs>, 
[src]

type Output = Mul<Self, Rhs::Expression>

The resulting type after applying the * operator.

impl NonAggregate for dungeon_type[src]

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

impl QueryId for dungeon_type[src]

type QueryId = dungeon_type

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

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

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

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

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

impl SelectableExpression<table> for dungeon_type[src]

impl<Rhs> Sub<Rhs> for dungeon_type where
    Rhs: AsExpression<<<dungeon_type as Expression>::SqlType as Sub>::Rhs>, 
[src]

type Output = Sub<Self, Rhs::Expression>

The resulting type after applying the - operator.

Auto Trait Implementations

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
    T: Expression + SelectableExpression<QS> + NonAggregate + QueryFragment<DB>,
    DB: Backend
[src]

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

impl<Conn, DB, T> ExecuteDsl<Conn, DB> for T where
    T: QueryFragment<DB> + QueryId,
    Conn: Connection<Backend = DB>,
    DB: Backend
[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> NullableExpressionMethods for T where
    T: Expression
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,