Struct diesel::backend::sql_dialect::default_keyword_for_insert::DoesNotSupportDefaultKeyword
source · pub struct DoesNotSupportDefaultKeyword;
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Expand description
Indicates that a backend does not support DEFAULT
value
expressions0for INSERT INTO
statements
Trait Implementations§
source§impl Clone for DoesNotSupportDefaultKeyword
impl Clone for DoesNotSupportDefaultKeyword
source§fn clone(&self) -> DoesNotSupportDefaultKeyword
fn clone(&self) -> DoesNotSupportDefaultKeyword
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for DoesNotSupportDefaultKeyword
impl Debug for DoesNotSupportDefaultKeyword
impl Copy for DoesNotSupportDefaultKeyword
Auto Trait Implementations§
impl RefUnwindSafe for DoesNotSupportDefaultKeyword
impl Send for DoesNotSupportDefaultKeyword
impl Sync for DoesNotSupportDefaultKeyword
impl Unpin for DoesNotSupportDefaultKeyword
impl UnwindSafe for DoesNotSupportDefaultKeyword
Blanket Implementations§
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§fn into_sql<T>(self) -> AsExprOf<Self, T>where
Self: AsExpression<T> + Sized,
T: SqlType + TypedExpressionType,
fn into_sql<T>(self) -> AsExprOf<Self, T>where 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) -> AsExprOf<&'a Self, T>where
&'a Self: AsExpression<T>,
T: SqlType + TypedExpressionType,
fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T>where &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,
Convert
&self
to an expression for Diesel’s query builder. Read more