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
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
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
Source§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
Source§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<__ST, __DB> FromSqlRow<__ST, __DB> for PgTime
impl<__ST, __DB> FromSqlRow<__ST, __DB> for PgTime
Source§const FIELDS_NEEDED: usize = 1usize
const FIELDS_NEEDED: usize = 1usize
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
Source§impl Ord for PgTime
impl Ord for PgTime
Source§impl PartialOrd for PgTime
impl PartialOrd for PgTime
impl 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