Struct diesel::pg::data_types::PgTime
source · pub struct PgTime(pub i64);
Expand description
Time is represented in Postgres as a 64 bit signed integer representing the number of microseconds since midnight. This struct is a dumb wrapper type, meant only to indicate the integer’s meaning.
Tuple Fields§
§0: i64
Trait Implementations§
source§impl<'expr> AsExpression<Nullable<Time>> for &'expr PgTime
impl<'expr> AsExpression<Nullable<Time>> for &'expr PgTime
§type Expression = Bound<Nullable<Time>, &'expr PgTime>
type Expression = Bound<Nullable<Time>, &'expr PgTime>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Nullable<Time>> for PgTime
impl AsExpression<Nullable<Time>> for PgTime
§type Expression = Bound<Nullable<Time>, PgTime>
type Expression = Bound<Nullable<Time>, PgTime>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl<'expr> AsExpression<Time> for &'expr PgTime
impl<'expr> AsExpression<Time> for &'expr PgTime
§type Expression = Bound<Time, &'expr PgTime>
type Expression = Bound<Time, &'expr PgTime>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl AsExpression<Time> for PgTime
impl AsExpression<Time> for PgTime
§type Expression = Bound<Time, PgTime>
type Expression = Bound<Time, PgTime>
The expression being returned
source§fn as_expression(self) -> Self::Expression
fn as_expression(self) -> Self::Expression
Perform the conversion
source§impl Ord for PgTime
impl Ord for PgTime
source§impl PartialEq for PgTime
impl PartialEq for PgTime
source§impl PartialOrd for PgTime
impl PartialOrd for PgTime
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for PgTime
impl Eq for PgTime
impl StructuralPartialEq for PgTime
Auto Trait Implementations§
impl Freeze for PgTime
impl RefUnwindSafe for PgTime
impl Send for PgTime
impl Sync for PgTime
impl Unpin for PgTime
impl UnwindSafe for PgTime
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T, ST, DB> FromSqlRow<ST, DB> for Twhere
T: Queryable<ST, DB>,
ST: SqlTypeOrSelectable,
DB: Backend,
<T as Queryable<ST, DB>>::Row: FromStaticSqlRow<ST, DB>,
impl<T, ST, DB> FromSqlRow<ST, DB> for Twhere
T: Queryable<ST, DB>,
ST: SqlTypeOrSelectable,
DB: Backend,
<T as Queryable<ST, DB>>::Row: FromStaticSqlRow<ST, DB>,
source§impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
impl<T, ST, DB> FromStaticSqlRow<ST, DB> for T
source§impl<T> IntoSql for T
impl<T> IntoSql for T
source§impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
impl<T, ST, DB> StaticallySizedRow<ST, DB> for T
source§const FIELD_COUNT: usize = const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE;
const FIELD_COUNT: usize = const FIELD_COUNT: usize = <ST as crate::util::TupleSize>::SIZE;
The number of fields that this type will consume.