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

pub struct Oid;

The OID SQL type. This is a PostgreSQL specific type.

ToSql impls

FromSql impls

Trait Implementations

impl FromSql<Oid, Pg> for u32[src]

impl<'expr> AsExpression<Oid> for &'expr u32[src]

type Expression = Bound<Oid, Self>

The expression being returned

impl<'expr2, 'expr> AsExpression<Oid> for &'expr2 &'expr u32[src]

type Expression = Bound<Oid, Self>

The expression being returned

impl AsExpression<Oid> for u32[src]

type Expression = Bound<Oid, Self>

The expression being returned

impl QueryId for Oid[src]

type QueryId = Oid

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 ToSql<Oid, Pg> for u32[src]

impl HasSqlType<Oid> for Pg[src]

impl NotNull for Oid[src]

impl SingleValue for Oid[src]

impl Copy for Oid[src]

impl Default for Oid[src]

impl Clone for Oid[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Oid[src]

Auto Trait Implementations

impl Send for Oid

impl Sync for Oid

Blanket Implementations

impl<T> IntoSql for T[src]

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

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

fn as_sql<'a, T>(&'a self) -> AsExprOf<&'a Self, T> 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

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

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

type Owned = T

impl<T> From for T[src]

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

type Error = Infallible

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

The type returned in the event of a conversion error.