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

pub struct Uuid;

The UUID SQL type. This type can only be used with feature = "uuid"

ToSql impls

FromSql impls

Trait Implementations

impl<'expr> AsExpression<Uuid> for &'expr Uuid[src]

type Expression = Bound<Uuid, Self>

The expression being returned

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

type Expression = Bound<Uuid, Self>

The expression being returned

impl AsExpression<Uuid> for Uuid[src]

type Expression = Bound<Uuid, Self>

The expression being returned

impl Clone for Uuid[src]

impl Copy for Uuid[src]

impl Debug for Uuid[src]

impl Default for Uuid[src]

impl FromSql<Uuid, Pg> for Uuid[src]

impl HasSqlType<Uuid> for Pg[src]

impl NotNull for Uuid[src]

impl QueryId for Uuid[src]

type QueryId = Uuid

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

impl SingleValue for Uuid[src]

impl ToSql<Uuid, Pg> for Uuid[src]

Auto Trait Implementations

impl RefUnwindSafe for Uuid

impl Send for Uuid

impl Sync for Uuid

impl Unpin for Uuid

impl UnwindSafe for Uuid

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.