pub struct Date(/* private fields */);
Expand description
A safe wrapper around Postgres DATE
type, backed by a pg_sys::DateADT
integer value.
Implementations§
Source§impl Date
impl Date
Sourcepub fn new(
year: i32,
month: u8,
day: u8,
) -> Result<Self, DateTimeConversionError>
pub fn new( year: i32, month: u8, day: u8, ) -> Result<Self, DateTimeConversionError>
Construct a new Date
from its constituent parts.
§Errors
Returns a DateTimeConversionError
if any of the specified parts don’t fit within
the bounds of a standard date.
Sourcepub fn new_unchecked(year: isize, month: u8, day: u8) -> Self
pub fn new_unchecked(year: isize, month: u8, day: u8) -> Self
Sourcepub fn saturating_from_raw(date_int: DateADT) -> Date
pub fn saturating_from_raw(date_int: DateADT) -> Date
From Date’s raw encoding type (i32
), construct a valid in-range Date by saturating to
the nearest infinity
if out-of-bounds.
Sourcepub fn positive_infinity() -> Self
pub fn positive_infinity() -> Self
Construct a new Date
representing positive infinity
Sourcepub fn negative_infinity() -> Self
pub fn negative_infinity() -> Self
Construct a new Date
representing negative infinity
Sourcepub unsafe fn from_pg_epoch_days(pg_epoch_days: i32) -> Date
pub unsafe fn from_pg_epoch_days(pg_epoch_days: i32) -> Date
Sourcepub fn is_infinity(&self) -> bool
pub fn is_infinity(&self) -> bool
Does this Date
represent positive infinity?
Sourcepub fn is_neg_infinity(&self) -> bool
pub fn is_neg_infinity(&self) -> bool
Does this Date
represent negative infinity?
Sourcepub fn to_julian_days(&self) -> i32
pub fn to_julian_days(&self) -> i32
Return the Julian days value of this Date
Sourcepub fn to_pg_epoch_days(&self) -> i32
pub fn to_pg_epoch_days(&self) -> i32
Return the Postgres epoch days value of this Date
Sourcepub fn to_unix_epoch_days(&self) -> i32
pub fn to_unix_epoch_days(&self) -> i32
Returns the date as an i32 representing the elapsed time since UNIX epoch in days
Sourcepub fn to_posix_time(&self) -> time_t
pub fn to_posix_time(&self) -> time_t
Return the date as a stack-allocated libc::time_t
instance
pub fn is_finite(&self) -> bool
Sourcepub fn into_inner(self) -> DateADT
pub fn into_inner(self) -> DateADT
Return the backing pg_sys::DateADT
value.
Trait Implementations§
Source§impl Add<Date> for TimeWithTimeZone
impl Add<Date> for TimeWithTimeZone
Source§impl Add<TimeWithTimeZone> for Date
impl Add<TimeWithTimeZone> for Date
Source§type Output = TimestampWithTimeZone
type Output = TimestampWithTimeZone
+
operator.Source§impl<'fcx> ArgAbi<'fcx> for Date
impl<'fcx> ArgAbi<'fcx> for Date
Source§unsafe fn unbox_arg_unchecked(arg: Arg<'_, 'fcx>) -> Self
unsafe fn unbox_arg_unchecked(arg: Arg<'_, 'fcx>) -> Self
Source§unsafe fn unbox_nullable_arg(arg: Arg<'_, 'fcx>) -> Nullable<Self>
unsafe fn unbox_nullable_arg(arg: Arg<'_, 'fcx>) -> Nullable<Self>
Source§fn is_virtual_arg() -> bool
fn is_virtual_arg() -> bool
Source§impl BorrowDatum for Date
impl BorrowDatum for Date
Source§unsafe fn point_from(ptr: NonNull<u8>) -> NonNull<Self>
unsafe fn point_from(ptr: NonNull<u8>) -> NonNull<Self>
Source§unsafe fn point_from_align4(ptr: NonNull<u32>) -> NonNull<Self>
unsafe fn point_from_align4(ptr: NonNull<u32>) -> NonNull<Self>
Source§unsafe fn borrow_unchecked<'dat>(ptr: NonNull<u8>) -> &'dat Self
unsafe fn borrow_unchecked<'dat>(ptr: NonNull<u8>) -> &'dat Self
Source§impl<'de> Deserialize<'de> for Date
impl<'de> Deserialize<'de> for Date
Source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
Source§impl From<Date> for TimestampWithTimeZone
impl From<Date> for TimestampWithTimeZone
Source§impl From<TimestampWithTimeZone> for Date
impl From<TimestampWithTimeZone> for Date
Source§fn from(value: TimestampWithTimeZone) -> Self
fn from(value: TimestampWithTimeZone) -> Self
Source§impl FromDatum for Date
impl FromDatum for Date
Source§unsafe fn from_polymorphic_datum(
datum: Datum,
is_null: bool,
_: Oid,
) -> Option<Self>where
Self: Sized,
unsafe fn from_polymorphic_datum(
datum: Datum,
is_null: bool,
_: Oid,
) -> Option<Self>where
Self: Sized,
from_datum
for instantiating polymorphic types
which require preserving the dynamic type metadata. Read moreSource§const GET_TYPOID: bool = false
const GET_TYPOID: bool = false
from_datum
?Source§unsafe fn from_datum_in_memory_context(
memory_context: PgMemoryContexts,
datum: Datum,
is_null: bool,
typoid: Oid,
) -> Option<Self>
unsafe fn from_datum_in_memory_context( memory_context: PgMemoryContexts, datum: Datum, is_null: bool, typoid: Oid, ) -> Option<Self>
FromDatum::from_datum(...)
from within that context. Read moreSource§unsafe fn try_from_datum(
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
unsafe fn try_from_datum(
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
try_from_datum
is a convenience wrapper around FromDatum::from_datum
that returns a
a Result
around an Option
, as a Datum can be null. It’s intended to be used in
situations where the caller needs to know whether the type conversion succeeded or failed. Read moreSource§unsafe fn try_from_datum_in_memory_context(
memory_context: PgMemoryContexts,
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
unsafe fn try_from_datum_in_memory_context(
memory_context: PgMemoryContexts,
datum: Datum,
is_null: bool,
type_oid: Oid,
) -> Result<Option<Self>, TryFromDatumError>where
Self: IntoDatum,
try_from_datum
that switches to the given context to convert from DatumSource§impl HasExtractableParts for Date
impl HasExtractableParts for Date
const EXTRACT_FUNCTION: unsafe fn(FunctionCallInfo) -> Datum = {pgrx_pg_sys::extract_date as unsafe fn(*mut pgrx_pg_sys::FunctionCallInfoBaseData) -> pgrx_pg_sys::Datum}
Source§fn extract_part(&self, field: DateTimeParts) -> Option<AnyNumeric>
fn extract_part(&self, field: DateTimeParts) -> Option<AnyNumeric>
DateTimeParts
part from a date/time-like typeSource§impl Ord for Date
impl Ord for Date
Source§fn cmp(&self, other: &Self) -> Ordering
fn cmp(&self, other: &Self) -> Ordering
Uses the underlying Postgres “_cmp()” function for this type
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Source§impl PartialOrd for Date
impl PartialOrd for Date
Source§impl RangeSubType for Date
for date/daterange
impl RangeSubType for Date
for date/daterange
fn range_type_oid() -> Oid
Source§impl Serialize for Date
impl Serialize for Date
Source§fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
fn serialize<S>(
&self,
serializer: S,
) -> Result<<S as Serializer>::Ok, <S as Serializer>::Error>where
S: Serializer,
Serialize this Date
in ISO form, compatible with most JSON parsers
Source§impl SqlTranslatable for Date
impl SqlTranslatable for Date
fn argument_sql() -> Result<SqlMapping, ArgumentError>
fn return_sql() -> Result<Returns, ReturnsError>
fn type_name() -> &'static str
fn variadic() -> bool
fn optional() -> bool
fn entity() -> FunctionMetadataTypeEntity
Source§impl ToIsoString for Date
impl ToIsoString for Date
Source§fn to_iso_string(self) -> String
fn to_iso_string(self) -> String
Source§fn to_iso_string_with_timezone<Tz: AsRef<str>>(
self,
timezone: Tz,
) -> Result<String, DateTimeConversionError>
fn to_iso_string_with_timezone<Tz: AsRef<str>>( self, timezone: Tz, ) -> Result<String, DateTimeConversionError>
Source§impl TryFrom<i32> for Date
Create a Date
from a pg_sys::DateADT
impl TryFrom<i32> for Date
Create a Date
from a pg_sys::DateADT
Note that pg_sys::DateADT
is an i32
as a Julian day offset from the “Postgres epoch”.
The details of the encoding may also prove surprising, for instance:
- It is not a Gregorian calendar date, but rather a Julian day
- Despite having the numerical range for it, it does not support values before Julian day 0 (4713 BC, January 1), nor does it support many values far into the future.
- There is no “year zero” in either the Julian or the Gregorian calendars, so you may have to account for a “skip” from 1 BC to 1 AD
- Some values such as
i32::MIN
andi32::MAX
have special meanings as infinities
Source§impl UnboxDatum for Date
impl UnboxDatum for Date
impl Copy for Date
impl Eq for Date
Auto Trait Implementations§
impl Freeze for Date
impl RefUnwindSafe for Date
impl Send for Date
impl Sync for Date
impl Unpin for Date
impl UnwindSafe for Date
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
self
, then passes self.deref()
into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
.tap_deref()
only in debug builds, and is erased in release
builds.