[][src]Struct diesel_citext::sql_types::Citext

pub struct Citext;

Trait Implementations

impl<'expr> AsExpression<Citext> for &'expr CiString[src]

type Expression = Bound<Citext, Self>

The expression being returned

impl<'expr2, 'expr> AsExpression<Citext> for &'expr2 &'expr CiString[src]

type Expression = Bound<Citext, Self>

The expression being returned

impl AsExpression<Citext> for CiString[src]

type Expression = Bound<Citext, Self>

The expression being returned

impl NotNull for Citext[src]

impl SingleValue for Citext[src]

impl HasSqlType<Citext> for Pg[src]

impl ToSql<Citext, Pg> for CiString[src]

impl ToSql<Citext, Pg> for String[src]

impl ToSql<Citext, Pg> for str[src]

impl QueryId for Citext[src]

type QueryId = Citext

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

fn query_id() -> Option<TypeId>[src]

Returns the type id of Self::QueryId if Self::HAS_STATIC_QUERY_ID. Returns None otherwise. Read more

impl FromSql<Citext, Pg> for CiString[src]

impl FromSql<Citext, Pg> for String[src]

Auto Trait Implementations

impl Send for Citext

impl Sync for Citext

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> IntoSql for T[src]

fn into_sql<T>(self) -> Self::Expression where
    Self: AsExpression<T>, 
[src]

Convert self to an expression for Diesel's query builder. Read more

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expression where
    &'a Self: AsExpression<T>, 
[src]

Convert &self to an expression for Diesel's query builder. Read more

impl<T> IntoNullable for T where
    T: NotNull
[src]

type Nullable = Nullable<T>

The nullable representation of this type. Read more