[]Struct cortex::schema::services::columns::inputconverter

pub struct inputconverter;

The inputconverter column of the services table.

Its SQL type is Nullable<Varchar>.

(Automatically generated by Diesel.)

Trait Implementations

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

impl Clone for inputconverter

impl Column for inputconverter

type Table = table

The table which this column belongs to

impl Copy for inputconverter

impl Debug for inputconverter

impl Default for inputconverter

impl<T> EqAll<T> for inputconverter where
    T: AsExpression<Nullable<Varchar>>,
    Eq<inputconverter, T>: Expression<SqlType = Bool>, 

type Output = Eq<Self, T>

impl Expression for inputconverter

type SqlType = Nullable<Varchar>

The type that this expression represents in SQL

impl NonAggregate for inputconverter

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

impl QueryId for inputconverter

type QueryId = inputconverter

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

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

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

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

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

impl SelectableExpression<table> for inputconverter

Auto Trait Implementations

impl RefUnwindSafe for inputconverter

impl Send for inputconverter

impl Sync for inputconverter

impl Unpin for inputconverter

impl UnwindSafe for inputconverter

Blanket Implementations

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

impl<T, I> AsResult<T, I> for T where
    I: Input, 

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> IntoCollection<T> for T

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> Same<T> for T

type Output = T

Should always be Self

impl<T> Sealed<T> for T where
    T: ?Sized

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.

impl<T> Typeable for T where
    T: Any

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