[][src]Struct diesel::pg::types::sql_types::Json

pub struct Json;

The JSON SQL type. This type can only be used with feature = "serde_json"

Normally you should prefer Jsonb instead, for the reasons discussed there.

ToSql impls

FromSql impls

Trait Implementations

impl<'expr> AsExpression<Json> for &'expr Value[src]

type Expression = Bound<Json, Self>

The expression being returned

impl<'expr2, 'expr> AsExpression<Json> for &'expr2 &'expr Value[src]

type Expression = Bound<Json, Self>

The expression being returned

impl AsExpression<Json> for Value[src]

type Expression = Bound<Json, Self>

The expression being returned

impl Clone for Json[src]

impl Copy for Json[src]

impl Debug for Json[src]

impl Default for Json[src]

impl FromSql<Json, Pg> for Value[src]

impl HasSqlType<Json> for Pg[src]

impl NotNull for Json[src]

impl QueryId for Json[src]

type QueryId = Json

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

impl SingleValue for Json[src]

impl ToSql<Json, Pg> for Value[src]

Auto Trait Implementations

impl RefUnwindSafe for Json

impl Send for Json

impl Sync for Json

impl Unpin for Json

impl UnwindSafe for Json

Blanket Implementations

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

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

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

impl<T> From<T> for T[src]

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

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

type Nullable = Nullable<T>

The nullable representation of this type. Read more

impl<T> IntoSql for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.