Struct diesel_dynamic_schema::Schema
source · pub struct Schema<T> { /* private fields */ }
Expand description
A database schema.
A database schema.
This type is created by the schema
function.
Implementations§
Trait Implementations§
impl<T: Copy> Copy for Schema<T>
Auto Trait Implementations§
impl<T> RefUnwindSafe for Schema<T>where T: RefUnwindSafe,
impl<T> Send for Schema<T>where T: Send,
impl<T> Sync for Schema<T>where T: Sync,
impl<T> Unpin for Schema<T>where T: Unpin,
impl<T> UnwindSafe for Schema<T>where T: UnwindSafe,
Blanket Implementations§
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> Self::Expressionwhere
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> Self::Expressionwhere Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,
Convert
self
to an expression for Diesel’s query builder. Read moresource§fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more