pub enum TermType {
Term,
}
Variants§
Term
Trait Implementations§
Source§impl<'expr> AsExpression<Nullable<Text>> for &'expr TermType
impl<'expr> AsExpression<Nullable<Text>> for &'expr TermType
Source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
Source§impl AsExpression<Nullable<Text>> for TermType
impl AsExpression<Nullable<Text>> for TermType
Source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
Source§impl<'expr> AsExpression<Text> for &'expr TermType
impl<'expr> AsExpression<Text> for &'expr TermType
Source§type Expression = Bound<Text, &'expr TermType>
type Expression = Bound<Text, &'expr TermType>
The expression being returned
Source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
Source§impl AsExpression<Text> for TermType
impl AsExpression<Text> for TermType
Source§type Expression = Bound<Text, TermType>
type Expression = Bound<Text, TermType>
The expression being returned
Source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
Source§impl<'de> Deserialize<'de> for TermType
impl<'de> Deserialize<'de> for TermType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl<__ST, __DB> FromSqlRow<__ST, __DB> for TermType
impl<__ST, __DB> FromSqlRow<__ST, __DB> for TermType
Source§const FIELDS_NEEDED: usize = 1usize
const FIELDS_NEEDED: usize = 1usize
The number of fields that this type will consume. Must be equal to
the number of times you would call
row.take()
in build_from_row
impl StructuralPartialEq for TermType
Auto Trait Implementations§
impl Freeze for TermType
impl RefUnwindSafe for TermType
impl Send for TermType
impl Sync for TermType
impl Unpin for TermType
impl UnwindSafe for TermType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoSql for T
impl<T> IntoSql for T
Source§fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
fn into_sql<T>(self) -> Self::Expressionwhere
Self: Sized + AsExpression<T>,
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>,
fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere
&'a Self: AsExpression<T>,
Convert
&self
to an expression for Diesel’s query builder. Read more