pub struct client_id;
Trait Implementations
sourceimpl<Rhs> Add<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Add>::Rhs>,
impl<Rhs> Add<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Add>::Rhs>,
sourceimpl<Rhs> Div<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Div>::Rhs>,
impl<Rhs> Div<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Div>::Rhs>,
sourceimpl Expression for client_id
impl Expression for client_id
type SqlType = Integer
type SqlType = Integer
The type that this expression represents in SQL
sourceimpl<Rhs> Mul<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Mul>::Rhs>,
impl<Rhs> Mul<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Mul>::Rhs>,
sourceimpl<DB> QueryFragment<DB> for client_idwhere
DB: Backend,
<table as QuerySource>::FromClause: QueryFragment<DB>,
impl<DB> QueryFragment<DB> for client_idwhere
DB: Backend,
<table as QuerySource>::FromClause: QueryFragment<DB>,
sourcefn walk_ast(&self, out: AstPass<'_, DB>) -> QueryResult<()>
fn walk_ast(&self, out: AstPass<'_, DB>) -> QueryResult<()>
Walk over this
QueryFragment
for all passes. Read morefn to_sql(&self, out: &mut <DB as Backend>::QueryBuilder) -> Result<(), Error>
fn to_sql(&self, out: &mut <DB as Backend>::QueryBuilder) -> Result<(), Error>
Converts this
QueryFragment
to its SQL representation. Read morefn collect_binds(
&self,
out: &mut <DB as Backend>::BindCollector,
metadata_lookup: &<DB as TypeMetadata>::MetadataLookup
) -> Result<(), Error>
fn collect_binds(
&self,
out: &mut <DB as Backend>::BindCollector,
metadata_lookup: &<DB as TypeMetadata>::MetadataLookup
) -> Result<(), Error>
Serializes all bind parameters in this query. Read more
fn is_safe_to_cache_prepared(&self) -> Result<bool, Error>
fn is_safe_to_cache_prepared(&self) -> Result<bool, Error>
Is this query safe to store in the prepared statement cache? Read more
sourceimpl QueryId for client_id
impl QueryId for client_id
sourceconst HAS_STATIC_QUERY_ID: bool = true
const HAS_STATIC_QUERY_ID: bool = true
Can the SQL generated by
Self
be uniquely identified by its type? Read moresourceimpl<Rhs> Sub<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Sub>::Rhs>,
impl<Rhs> Sub<Rhs> for client_idwhere
Rhs: AsExpression<<<client_id as Expression>::SqlType as Sub>::Rhs>,
impl<QS> AppearsOnTable<QS> for client_idwhere
QS: AppearsInFromClause<table, Count = Once>,
impl Copy for client_id
impl NonAggregate for client_id
impl SelectableExpression<table> for client_id
Auto Trait Implementations
impl RefUnwindSafe for client_id
impl Send for client_id
impl Sync for client_id
impl Unpin for client_id
impl UnwindSafe for client_id
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere
Conn: Connection<Backend = DB>,
DB: Backend,
T: QueryFragment<DB> + QueryId,
impl<Conn, DB, T> ExecuteDsl<Conn, DB> for Twhere
Conn: Connection<Backend = DB>,
DB: Backend,
T: QueryFragment<DB> + QueryId,
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T> IntoCollection<T> for T
impl<T> IntoCollection<T> for T
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
fn into_collection<A>(self) -> SmallVec<A>where
A: Array<Item = T>,
Converts
self
into a collection.fn mapped<U, F, A>(self, f: F) -> SmallVec<A>where
F: FnMut(T) -> U,
A: Array<Item = U>,
sourceimpl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
sourcefn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
impl<T> IntoSql for T
impl<T> IntoSql for T
impl<T> PgExpressionMethods for Twhere
T: Expression,
impl<T> PgExpressionMethods for Twhere
T: Expression,
fn is_not_distinct_from<T>(
self,
other: T
) -> IsNotDistinctFrom<Self, <T as AsExpression<Self::SqlType>>::Expression>where
T: AsExpression<Self::SqlType>,
fn is_not_distinct_from<T>(
self,
other: T
) -> IsNotDistinctFrom<Self, <T as AsExpression<Self::SqlType>>::Expression>where
T: AsExpression<Self::SqlType>,
Creates a PostgreSQL
IS NOT DISTINCT FROM
expression. Read morefn is_distinct_from<T>(
self,
other: T
) -> IsDistinctFrom<Self, <T as AsExpression<Self::SqlType>>::Expression>where
T: AsExpression<Self::SqlType>,
fn is_distinct_from<T>(
self,
other: T
) -> IsDistinctFrom<Self, <T as AsExpression<Self::SqlType>>::Expression>where
T: AsExpression<Self::SqlType>,
Creates a PostgreSQL
IS DISTINCT FROM
expression. Read more