Struct diesel::pg::data_types::PgDate [−][src]
pub struct PgDate(pub i32);
Expand description
Dates are represented in Postgres as a 32 bit signed integer representing the number of julian days since January 1st 2000. This struct is a dumb wrapper type, meant only to indicate the integer’s meaning.
Trait Implementations
type Expression = Bound<Date, Self>
type Expression = Bound<Date, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Date, Self>
type Expression = Bound<Date, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Nullable<Date>, Self>
type Expression = Bound<Nullable<Date>, Self>
The expression being returned
Perform the conversion
type Expression = Bound<Nullable<Date>, Self>
type Expression = Bound<Nullable<Date>, Self>
The expression being returned
Perform the conversion
impl<__ST, __DB> FromSqlRow<__ST, __DB> for PgDate where
__DB: Backend,
Self: FromSql<__ST, __DB>,
impl<__ST, __DB> FromSqlRow<__ST, __DB> for PgDate where
__DB: Backend,
Self: FromSql<__ST, __DB>,
See the trait documentation.
The number of fields that this type will consume. Must be equal to
the number of times you would call row.take()
in build_from_row
Read more
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for PgDate
impl UnwindSafe for PgDate
Blanket Implementations
Mutably borrows from an owned value. Read more
Convert self
to an expression for Diesel’s query builder. Read more