[][src]Struct sqlx::types::Json

pub struct Json<T>(pub T)
where
    T: ?Sized
;

Trait Implementations

impl<T> AsMut<T> for Json<T>[src]

impl<T> AsRef<T> for Json<T>[src]

impl<T> Clone for Json<T> where
    T: Clone + ?Sized
[src]

impl<T> Copy for Json<T> where
    T: Copy + ?Sized
[src]

impl<T> Debug for Json<T> where
    T: Debug + ?Sized
[src]

impl<'r, T> Decode<'r, MySql> for Json<T> where
    T: 'r + Deserialize<'r>, 
[src]

impl<'r, T> Decode<'r, Postgres> for Json<T> where
    T: 'r + Deserialize<'r>, 
[src]

impl<'r, T> Decode<'r, Sqlite> for Json<T> where
    T: 'r + Deserialize<'r>, 
[src]

impl<T> Default for Json<T> where
    T: Default + ?Sized
[src]

impl<T> Deref for Json<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T> DerefMut for Json<T>[src]

impl<'de, T> Deserialize<'de> for Json<T> where
    T: Deserialize<'de> + ?Sized
[src]

impl<'_, T> Encode<'_, MySql> for Json<T> where
    T: Serialize
[src]

impl<'_, T> Encode<'_, Sqlite> for Json<T> where
    T: Serialize
[src]

impl<'q, T> Encode<'q, Postgres> for Json<T> where
    T: Serialize
[src]

impl<T> Eq for Json<T> where
    T: Eq + ?Sized
[src]

impl<T> Hash for Json<T> where
    T: Hash + ?Sized
[src]

impl<T> Ord for Json<T> where
    T: Ord + ?Sized
[src]

impl<T> PartialEq<Json<T>> for Json<T> where
    T: PartialEq<T> + ?Sized
[src]

impl<T> PartialOrd<Json<T>> for Json<T> where
    T: PartialOrd<T> + ?Sized
[src]

impl<T> Serialize for Json<T> where
    T: Serialize + ?Sized
[src]

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

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

impl<T> Type<MySql> for Json<T>[src]

impl<T> Type<Postgres> for Json<T>[src]

impl<T> Type<Sqlite> for Json<T>[src]

Auto Trait Implementations

impl<T: ?Sized> RefUnwindSafe for Json<T> where
    T: RefUnwindSafe

impl<T: ?Sized> Send for Json<T> where
    T: Send

impl<T: ?Sized> Sync for Json<T> where
    T: Sync

impl<T: ?Sized> Unpin for Json<T> where
    T: Unpin

impl<T: ?Sized> UnwindSafe for Json<T> where
    T: UnwindSafe

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> CallHasher for T where
    T: Hash

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,