pub struct Postgres;
Expand description
PostgreSQL database driver.
Trait Implementations
sourceimpl Database for Postgres
impl Database for Postgres
type Connection = PgConnection
type Connection = PgConnection
The concrete Connection
implementation for this database.
type TransactionManager = PgTransactionManager
type TransactionManager = PgTransactionManager
The concrete TransactionManager
implementation for this database.
type QueryResult = PgQueryResult
type QueryResult = PgQueryResult
The concrete QueryResult
implementation for this database.
type TypeInfo = PgTypeInfo
type TypeInfo = PgTypeInfo
The concrete TypeInfo
implementation for this database.
sourceimpl Decode<'_, Postgres> for bool
impl Decode<'_, Postgres> for bool
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for Vec<u8>
impl Decode<'_, Postgres> for Vec<u8>
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for String
impl Decode<'_, Postgres> for String
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for f32
impl Decode<'_, Postgres> for f32
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for f64
impl Decode<'_, Postgres> for f64
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for i8
impl Decode<'_, Postgres> for i8
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for i16
impl Decode<'_, Postgres> for i16
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for i32
impl Decode<'_, Postgres> for i32
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for i64
impl Decode<'_, Postgres> for i64
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for PgMoney
impl Decode<'_, Postgres> for PgMoney
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Decode<'_, Postgres> for Oid
impl Decode<'_, Postgres> for Oid
sourcefn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'_>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'de> Decode<'de, Postgres> for PgInterval
impl<'de> Decode<'de, Postgres> for PgInterval
sourcefn decode(value: PgValueRef<'de>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'de>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T> Decode<'r, Postgres> for Vec<T> where
T: for<'a> Decode<'a, Postgres> + Type<Postgres>,
impl<'r, T> Decode<'r, Postgres> for Vec<T> where
T: for<'a> Decode<'a, Postgres> + Type<Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r> Decode<'r, Postgres> for &'r [u8]
impl<'r> Decode<'r, Postgres> for &'r [u8]
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2, T3, T4> Decode<'r, Postgres> for (T1, T2, T3, T4) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2, T3, T4> Decode<'r, Postgres> for (T1, T2, T3, T4) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2, T3, T4, T5> Decode<'r, Postgres> for (T1, T2, T3, T4, T5) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2, T3, T4, T5> Decode<'r, Postgres> for (T1, T2, T3, T4, T5) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2, T3, T4, T5, T6> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2, T3, T4, T5, T6> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2, T3, T4, T5, T6, T7> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6, T7) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T7: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T7: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
T7: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2, T3, T4, T5, T6, T7> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6, T7) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T7: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T7: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
T7: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2, T3, T4, T5, T6, T7, T8> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T7: 'r,
T8: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T7: Type<Postgres>,
T8: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
T7: for<'a> Decode<'a, Postgres>,
T8: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2, T3, T4, T5, T6, T7, T8> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T7: 'r,
T8: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T7: Type<Postgres>,
T8: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
T7: for<'a> Decode<'a, Postgres>,
T8: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2, T3, T4, T5, T6, T7, T8, T9> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8, T9) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T7: 'r,
T8: 'r,
T9: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T7: Type<Postgres>,
T8: Type<Postgres>,
T9: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
T7: for<'a> Decode<'a, Postgres>,
T8: for<'a> Decode<'a, Postgres>,
T9: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2, T3, T4, T5, T6, T7, T8, T9> Decode<'r, Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8, T9) where
T1: 'r,
T2: 'r,
T3: 'r,
T4: 'r,
T5: 'r,
T6: 'r,
T7: 'r,
T8: 'r,
T9: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T4: Type<Postgres>,
T5: Type<Postgres>,
T6: Type<Postgres>,
T7: Type<Postgres>,
T8: Type<Postgres>,
T9: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
T4: for<'a> Decode<'a, Postgres>,
T5: for<'a> Decode<'a, Postgres>,
T6: for<'a> Decode<'a, Postgres>,
T7: for<'a> Decode<'a, Postgres>,
T8: for<'a> Decode<'a, Postgres>,
T9: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r> Decode<'r, Postgres> for ()
impl<'r> Decode<'r, Postgres> for ()
sourcefn decode(_value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(_value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T: 'r> Decode<'r, Postgres> for Json<T> where
T: Deserialize<'r>,
impl<'r, T: 'r> Decode<'r, Postgres> for Json<T> where
T: Deserialize<'r>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r> Decode<'r, Postgres> for PgLQuery
impl<'r> Decode<'r, Postgres> for PgLQuery
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r> Decode<'r, Postgres> for PgLTree
impl<'r> Decode<'r, Postgres> for PgLTree
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T> Decode<'r, Postgres> for PgRange<T> where
T: Type<Postgres> + for<'a> Decode<'a, Postgres>,
impl<'r, T> Decode<'r, Postgres> for PgRange<T> where
T: Type<Postgres> + for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r> Decode<'r, Postgres> for &'r str
impl<'r> Decode<'r, Postgres> for &'r str
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r> Decode<'r, Postgres> for Cow<'r, str>
impl<'r> Decode<'r, Postgres> for Cow<'r, str>
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1> Decode<'r, Postgres> for (T1,) where
T1: 'r,
T1: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
impl<'r, T1> Decode<'r, Postgres> for (T1,) where
T1: 'r,
T1: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2> Decode<'r, Postgres> for (T1, T2) where
T1: 'r,
T2: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2> Decode<'r, Postgres> for (T1, T2) where
T1: 'r,
T2: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl<'r, T1, T2, T3> Decode<'r, Postgres> for (T1, T2, T3) where
T1: 'r,
T2: 'r,
T3: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
impl<'r, T1, T2, T3> Decode<'r, Postgres> for (T1, T2, T3) where
T1: 'r,
T2: 'r,
T3: 'r,
T1: Type<Postgres>,
T2: Type<Postgres>,
T3: Type<Postgres>,
T1: for<'a> Decode<'a, Postgres>,
T2: for<'a> Decode<'a, Postgres>,
T3: for<'a> Decode<'a, Postgres>,
sourcefn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
fn decode(value: PgValueRef<'r>) -> Result<Self, BoxDynError>
Decode a new value of this type using a raw value from the database.
sourceimpl Encode<'_, Postgres> for bool
impl Encode<'_, Postgres> for bool
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for &[u8]
impl Encode<'_, Postgres> for &[u8]
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for Duration
impl Encode<'_, Postgres> for Duration
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
fn size_hint(&self) -> usize
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
sourceimpl Encode<'_, Postgres> for PgLQuery
impl Encode<'_, Postgres> for PgLQuery
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for PgLTree
impl Encode<'_, Postgres> for PgLTree
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for PgMoney
impl Encode<'_, Postgres> for PgMoney
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for Oid
impl Encode<'_, Postgres> for Oid
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for &str
impl Encode<'_, Postgres> for &str
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for Cow<'_, str>
impl Encode<'_, Postgres> for Cow<'_, str>
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for String
impl Encode<'_, Postgres> for String
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for Vec<u8>
impl Encode<'_, Postgres> for Vec<u8>
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for f32
impl Encode<'_, Postgres> for f32
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for f64
impl Encode<'_, Postgres> for f64
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for i8
impl Encode<'_, Postgres> for i8
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for i16
impl Encode<'_, Postgres> for i16
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for i32
impl Encode<'_, Postgres> for i32
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for i64
impl Encode<'_, Postgres> for i64
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl Encode<'_, Postgres> for PgInterval
impl Encode<'_, Postgres> for PgInterval
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
fn size_hint(&self) -> usize
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
sourceimpl<'q, T> Encode<'q, Postgres> for Vec<T> where
for<'a> &'a [T]: Encode<'q, Postgres>,
T: Encode<'q, Postgres>,
impl<'q, T> Encode<'q, Postgres> for Vec<T> where
for<'a> &'a [T]: Encode<'q, Postgres>,
T: Encode<'q, Postgres>,
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl<'q, T> Encode<'q, Postgres> for &[T] where
T: Encode<'q, Postgres> + Type<Postgres>,
impl<'q, T> Encode<'q, Postgres> for &[T] where
T: Encode<'q, Postgres> + Type<Postgres>,
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl<'q, T> Encode<'q, Postgres> for PgRange<T> where
T: Encode<'q, Postgres>,
impl<'q, T> Encode<'q, Postgres> for PgRange<T> where
T: Encode<'q, Postgres>,
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl<'q, T> Encode<'q, Postgres> for Json<T> where
T: Serialize,
impl<'q, T> Encode<'q, Postgres> for Json<T> where
T: Serialize,
sourcefn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
fn encode_by_ref(&self, buf: &mut PgArgumentBuffer) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
sourcefn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
fn encode(self, buf: &mut <DB as HasArguments<'q>>::ArgumentBuffer) -> IsNull where
Self: Sized,
Writes the value of self
into buf
in the expected format for the database.
fn produces(&self) -> Option<DB::TypeInfo>
fn size_hint(&self) -> usize
sourceimpl<'q, T> Encode<'q, Postgres> for Option<T> where
T: Encode<'q, Postgres> + Type<Postgres> + 'q,
impl<'q, T> Encode<'q, Postgres> for Option<T> where
T: Encode<'q, Postgres> + Type<Postgres> + 'q,
fn produces(&self) -> Option<<Postgres as Database>::TypeInfo>
sourcefn encode(
self,
buf: &mut <Postgres as HasArguments<'q>>::ArgumentBuffer
) -> IsNull
fn encode(
self,
buf: &mut <Postgres as HasArguments<'q>>::ArgumentBuffer
) -> IsNull
Writes the value of self
into buf
in the expected format for the database.
sourcefn encode_by_ref(
&self,
buf: &mut <Postgres as HasArguments<'q>>::ArgumentBuffer
) -> IsNull
fn encode_by_ref(
&self,
buf: &mut <Postgres as HasArguments<'q>>::ArgumentBuffer
) -> IsNull
Writes the value of self
into buf
without moving self
. Read more
fn size_hint(&self) -> usize
sourceimpl HasArguments<'_> for Postgres
impl HasArguments<'_> for Postgres
type Database = Postgres
type Arguments = PgArguments
type Arguments = PgArguments
The concrete Arguments
implementation for this database.
type ArgumentBuffer = PgArgumentBuffer
type ArgumentBuffer = PgArgumentBuffer
The concrete type used as a buffer for arguments while encoding.
sourceimpl<'q> HasStatement<'q> for Postgres
impl<'q> HasStatement<'q> for Postgres
type Database = Postgres
type Statement = PgStatement<'q>
type Statement = PgStatement<'q>
The concrete Statement
implementation for this database.
sourceimpl<'r> HasValueRef<'r> for Postgres
impl<'r> HasValueRef<'r> for Postgres
type Database = Postgres
type ValueRef = PgValueRef<'r>
type ValueRef = PgValueRef<'r>
The concrete type used to hold a reference to the not-yet-decoded value that has just been received from the database. Read more
sourceimpl MigrateDatabase for Postgres
impl MigrateDatabase for Postgres
sourceimpl<T> Type<Postgres> for [T] where
T: PgHasArrayType,
impl<T> Type<Postgres> for [T] where
T: PgHasArrayType,
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T> Type<Postgres> for Vec<T> where
T: PgHasArrayType,
impl<T> Type<Postgres> for Vec<T> where
T: PgHasArrayType,
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for Duration
impl Type<Postgres> for Duration
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for PgLQuery
impl Type<Postgres> for PgLQuery
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for PgLTree
impl Type<Postgres> for PgLTree
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for PgMoney
impl Type<Postgres> for PgMoney
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for Oid
impl Type<Postgres> for Oid
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for PgRange<i32>
impl Type<Postgres> for PgRange<i32>
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for PgRange<i64>
impl Type<Postgres> for PgRange<i64>
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for str
impl Type<Postgres> for str
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for Cow<'_, str>
impl Type<Postgres> for Cow<'_, str>
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for String
impl Type<Postgres> for String
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for bool
impl Type<Postgres> for bool
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1> Type<Postgres> for (T1,)
impl<T1> Type<Postgres> for (T1,)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2> Type<Postgres> for (T1, T2)
impl<T1, T2> Type<Postgres> for (T1, T2)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2, T3> Type<Postgres> for (T1, T2, T3)
impl<T1, T2, T3> Type<Postgres> for (T1, T2, T3)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2, T3, T4> Type<Postgres> for (T1, T2, T3, T4)
impl<T1, T2, T3, T4> Type<Postgres> for (T1, T2, T3, T4)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2, T3, T4, T5> Type<Postgres> for (T1, T2, T3, T4, T5)
impl<T1, T2, T3, T4, T5> Type<Postgres> for (T1, T2, T3, T4, T5)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2, T3, T4, T5, T6> Type<Postgres> for (T1, T2, T3, T4, T5, T6)
impl<T1, T2, T3, T4, T5, T6> Type<Postgres> for (T1, T2, T3, T4, T5, T6)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2, T3, T4, T5, T6, T7> Type<Postgres> for (T1, T2, T3, T4, T5, T6, T7)
impl<T1, T2, T3, T4, T5, T6, T7> Type<Postgres> for (T1, T2, T3, T4, T5, T6, T7)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2, T3, T4, T5, T6, T7, T8> Type<Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8)
impl<T1, T2, T3, T4, T5, T6, T7, T8> Type<Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T1, T2, T3, T4, T5, T6, T7, T8, T9> Type<Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8, T9)
impl<T1, T2, T3, T4, T5, T6, T7, T8, T9> Type<Postgres> for (T1, T2, T3, T4, T5, T6, T7, T8, T9)
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for ()
impl Type<Postgres> for ()
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for f32
impl Type<Postgres> for f32
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl<T> Type<Postgres> for Json<T>
impl<T> Type<Postgres> for Json<T>
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &PgTypeInfo) -> bool
fn compatible(ty: &PgTypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for f64
impl Type<Postgres> for f64
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for i8
impl Type<Postgres> for i8
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for i16
impl Type<Postgres> for i16
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for i32
impl Type<Postgres> for i32
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for i64
impl Type<Postgres> for i64
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
sourceimpl Type<Postgres> for PgInterval
impl Type<Postgres> for PgInterval
sourcefn type_info() -> PgTypeInfo
fn type_info() -> PgTypeInfo
Returns the canonical SQL type for this Rust type. Read more
sourcefn compatible(ty: &DB::TypeInfo) -> bool
fn compatible(ty: &DB::TypeInfo) -> bool
Determines if this Rust type is compatible with the given SQL type. Read more
impl HasStatementCache for Postgres
Auto Trait Implementations
impl RefUnwindSafe for Postgres
impl Send for Postgres
impl Sync for Postgres
impl Unpin for Postgres
impl UnwindSafe for Postgres
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more