[]Struct kubos_telemetry_db::telemetry::columns::parameter

pub struct parameter;

Trait Implementations

impl Default for parameter[+]

impl Clone for parameter[+]

impl Copy for parameter

impl Debug for parameter[+]

impl SelectableExpression<table> for parameter

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

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

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

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

impl Expression for parameter

type SqlType = Text

The type that this expression represents in SQL

impl Column for parameter

type Table = table

The table which this column belongs to

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

type Output = Eq<Self, T>

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

impl QueryId for parameter[+]

type QueryId = parameter

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

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

impl NonAggregate for parameter

Auto Trait Implementations

impl Send for parameter

impl Unpin for parameter

impl Sync for parameter

impl UnwindSafe for parameter

impl RefUnwindSafe for parameter

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src][+]

type Owned = T

The resulting type after obtaining ownership.

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

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

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> BorrowMut<T> for T where
    T: ?Sized
[src][+]

impl<T> Borrow<T> for T where
    T: ?Sized
[src][+]

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

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

impl<T> IntoSql for T[+]

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

impl<QS, T, DB> BoxableExpression<QS, DB> for T where
    DB: Backend,
    T: Expression + SelectableExpression<QS> + NonAggregate + QueryFragment<DB>, 

impl<T> NullableExpressionMethods for T where
    T: Expression, 
[+]

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