pub struct ChronoUnixTimestamp(pub ChronoDateTimeUtc);with-chrono only.Expand description
A DataTime
Tuple Fieldsยง
ยง0: ChronoDateTimeUtcMethods from Deref<Target = ChronoDateTimeUtc>ยง
pub const MIN_UTC: DateTime<Utc>
pub const MAX_UTC: DateTime<Utc>
Sourcepub fn date(&self) -> Date<Tz>
๐Deprecated since 0.4.23: Use date_naive() instead
pub fn date(&self) -> Date<Tz>
date_naive() insteadRetrieves the date component with an associated timezone.
Unless you are immediately planning on turning this into a DateTime
with the same timezone you should use the date_naive method.
NaiveDate is a more well-defined type, and has more traits implemented on it,
so should be preferred to Date any time you truly want to operate on dates.
ยงPanics
DateTime internally stores the date and time in UTC with a NaiveDateTime. This
method will panic if the offset from UTC would push the local date outside of the
representable range of a Date.
Sourcepub fn date_naive(&self) -> NaiveDate
pub fn date_naive(&self) -> NaiveDate
Retrieves the date component.
ยงPanics
DateTime internally stores the date and time in UTC with a NaiveDateTime. This
method will panic if the offset from UTC would push the local date outside of the
representable range of a NaiveDate.
ยงExample
use chrono::prelude::*;
let date: DateTime<Utc> = Utc.with_ymd_and_hms(2020, 1, 1, 0, 0, 0).unwrap();
let other: DateTime<FixedOffset> =
FixedOffset::east_opt(23).unwrap().with_ymd_and_hms(2020, 1, 1, 0, 0, 0).unwrap();
assert_eq!(date.date_naive(), other.date_naive());Sourcepub fn timestamp(&self) -> i64
pub fn timestamp(&self) -> i64
Returns the number of non-leap seconds since January 1, 1970 0:00:00 UTC (aka โUNIX timestampโ).
The reverse operation of creating a DateTime from a timestamp can be performed
using from_timestamp or TimeZone::timestamp_opt.
use chrono::{DateTime, TimeZone, Utc};
let dt: DateTime<Utc> = Utc.with_ymd_and_hms(2015, 5, 15, 0, 0, 0).unwrap();
assert_eq!(dt.timestamp(), 1431648000);
assert_eq!(DateTime::from_timestamp(dt.timestamp(), dt.timestamp_subsec_nanos()).unwrap(), dt);Sourcepub fn timestamp_millis(&self) -> i64
pub fn timestamp_millis(&self) -> i64
Returns the number of non-leap-milliseconds since January 1, 1970 UTC.
ยงExample
use chrono::{NaiveDate, Utc};
let dt = NaiveDate::from_ymd_opt(1970, 1, 1)
.unwrap()
.and_hms_milli_opt(0, 0, 1, 444)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_millis(), 1_444);
let dt = NaiveDate::from_ymd_opt(2001, 9, 9)
.unwrap()
.and_hms_milli_opt(1, 46, 40, 555)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_millis(), 1_000_000_000_555);Sourcepub fn timestamp_micros(&self) -> i64
pub fn timestamp_micros(&self) -> i64
Returns the number of non-leap-microseconds since January 1, 1970 UTC.
ยงExample
use chrono::{NaiveDate, Utc};
let dt = NaiveDate::from_ymd_opt(1970, 1, 1)
.unwrap()
.and_hms_micro_opt(0, 0, 1, 444)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_micros(), 1_000_444);
let dt = NaiveDate::from_ymd_opt(2001, 9, 9)
.unwrap()
.and_hms_micro_opt(1, 46, 40, 555)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_micros(), 1_000_000_000_000_555);Sourcepub fn timestamp_nanos(&self) -> i64
๐Deprecated since 0.4.31: use timestamp_nanos_opt() instead
pub fn timestamp_nanos(&self) -> i64
timestamp_nanos_opt() insteadReturns the number of non-leap-nanoseconds since January 1, 1970 UTC.
ยงPanics
An i64 with nanosecond precision can span a range of ~584 years. This function panics on
an out of range DateTime.
The dates that can be represented as nanoseconds are between 1677-09-21T00:12:43.145224192 and 2262-04-11T23:47:16.854775807.
Sourcepub fn timestamp_nanos_opt(&self) -> Option<i64>
pub fn timestamp_nanos_opt(&self) -> Option<i64>
Returns the number of non-leap-nanoseconds since January 1, 1970 UTC.
ยงErrors
An i64 with nanosecond precision can span a range of ~584 years. This function returns
None on an out of range DateTime.
The dates that can be represented as nanoseconds are between 1677-09-21T00:12:43.145224192 and 2262-04-11T23:47:16.854775807.
ยงExample
use chrono::{NaiveDate, Utc};
let dt = NaiveDate::from_ymd_opt(1970, 1, 1)
.unwrap()
.and_hms_nano_opt(0, 0, 1, 444)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_nanos_opt(), Some(1_000_000_444));
let dt = NaiveDate::from_ymd_opt(2001, 9, 9)
.unwrap()
.and_hms_nano_opt(1, 46, 40, 555)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_nanos_opt(), Some(1_000_000_000_000_000_555));
let dt = NaiveDate::from_ymd_opt(1677, 9, 21)
.unwrap()
.and_hms_nano_opt(0, 12, 43, 145_224_192)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_nanos_opt(), Some(-9_223_372_036_854_775_808));
let dt = NaiveDate::from_ymd_opt(2262, 4, 11)
.unwrap()
.and_hms_nano_opt(23, 47, 16, 854_775_807)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_nanos_opt(), Some(9_223_372_036_854_775_807));
let dt = NaiveDate::from_ymd_opt(1677, 9, 21)
.unwrap()
.and_hms_nano_opt(0, 12, 43, 145_224_191)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_nanos_opt(), None);
let dt = NaiveDate::from_ymd_opt(2262, 4, 11)
.unwrap()
.and_hms_nano_opt(23, 47, 16, 854_775_808)
.unwrap()
.and_local_timezone(Utc)
.unwrap();
assert_eq!(dt.timestamp_nanos_opt(), None);Sourcepub fn timestamp_subsec_millis(&self) -> u32
pub fn timestamp_subsec_millis(&self) -> u32
Returns the number of milliseconds since the last second boundary.
In event of a leap second this may exceed 999.
Sourcepub fn timestamp_subsec_micros(&self) -> u32
pub fn timestamp_subsec_micros(&self) -> u32
Returns the number of microseconds since the last second boundary.
In event of a leap second this may exceed 999,999.
Sourcepub fn timestamp_subsec_nanos(&self) -> u32
pub fn timestamp_subsec_nanos(&self) -> u32
Returns the number of nanoseconds since the last second boundary
In event of a leap second this may exceed 999,999,999.
Sourcepub fn with_timezone<Tz2>(&self, tz: &Tz2) -> DateTime<Tz2>where
Tz2: TimeZone,
pub fn with_timezone<Tz2>(&self, tz: &Tz2) -> DateTime<Tz2>where
Tz2: TimeZone,
Changes the associated time zone.
The returned DateTime references the same instant of time from the perspective of the
provided time zone.
Sourcepub fn fixed_offset(&self) -> DateTime<FixedOffset>
pub fn fixed_offset(&self) -> DateTime<FixedOffset>
Fix the offset from UTC to its current value, dropping the associated timezone information.
This it useful for converting a generic DateTime<Tz: Timezone> to DateTime<FixedOffset>.
Sourcepub fn to_utc(&self) -> DateTime<Utc>
pub fn to_utc(&self) -> DateTime<Utc>
Turn this DateTime into a DateTime<Utc>, dropping the offset and associated timezone
information.
Sourcepub fn naive_utc(&self) -> NaiveDateTime
pub fn naive_utc(&self) -> NaiveDateTime
Returns a view to the naive UTC datetime.
Sourcepub fn naive_local(&self) -> NaiveDateTime
pub fn naive_local(&self) -> NaiveDateTime
Returns a view to the naive local datetime.
ยงPanics
DateTime internally stores the date and time in UTC with a NaiveDateTime. This
method will panic if the offset from UTC would push the local datetime outside of the
representable range of a NaiveDateTime.
Sourcepub fn years_since(&self, base: DateTime<Tz>) -> Option<u32>
pub fn years_since(&self, base: DateTime<Tz>) -> Option<u32>
Sourcepub fn to_rfc2822(&self) -> String
Available on crate feature alloc only.
pub fn to_rfc2822(&self) -> String
alloc only.Returns an RFC 2822 date and time string such as Tue, 1 Jul 2003 10:52:37 +0200.
ยงPanics
Panics if the date can not be represented in this format: the year may not be negative and can not have more than 4 digits.
Sourcepub fn to_rfc3339(&self) -> String
Available on crate feature alloc only.
pub fn to_rfc3339(&self) -> String
alloc only.Returns an RFC 3339 and ISO 8601 date and time string such as 1996-12-19T16:39:57-08:00.
Sourcepub fn to_rfc3339_opts(&self, secform: SecondsFormat, use_z: bool) -> String
Available on crate feature alloc only.
pub fn to_rfc3339_opts(&self, secform: SecondsFormat, use_z: bool) -> String
alloc only.Return an RFC 3339 and ISO 8601 date and time string with subseconds
formatted as per SecondsFormat.
If use_z is true and the timezone is UTC (offset 0), uses Z as
per Fixed::TimezoneOffsetColonZ. If use_z is false, uses
Fixed::TimezoneOffsetColon
ยงExamples
let dt = NaiveDate::from_ymd_opt(2018, 1, 26)
.unwrap()
.and_hms_micro_opt(18, 30, 9, 453_829)
.unwrap()
.and_utc();
assert_eq!(dt.to_rfc3339_opts(SecondsFormat::Millis, false), "2018-01-26T18:30:09.453+00:00");
assert_eq!(dt.to_rfc3339_opts(SecondsFormat::Millis, true), "2018-01-26T18:30:09.453Z");
assert_eq!(dt.to_rfc3339_opts(SecondsFormat::Secs, true), "2018-01-26T18:30:09Z");
let pst = FixedOffset::east_opt(8 * 60 * 60).unwrap();
let dt = pst
.from_local_datetime(
&NaiveDate::from_ymd_opt(2018, 1, 26)
.unwrap()
.and_hms_micro_opt(10, 30, 9, 453_829)
.unwrap(),
)
.unwrap();
assert_eq!(dt.to_rfc3339_opts(SecondsFormat::Secs, true), "2018-01-26T10:30:09+08:00");Sourcepub fn with_time(&self, time: NaiveTime) -> LocalResult<DateTime<Tz>>
pub fn with_time(&self, time: NaiveTime) -> LocalResult<DateTime<Tz>>
Set the time to a new fixed time on the existing date.
ยงErrors
Returns LocalResult::None if the datetime is at the edge of the representable range for a
DateTime, and with_time would push the value in UTC out of range.
ยงExample
use chrono::{Local, NaiveTime};
let noon = NaiveTime::from_hms_opt(12, 0, 0).unwrap();
let today_noon = Local::now().with_time(noon);
let today_midnight = Local::now().with_time(NaiveTime::MIN);
assert_eq!(today_noon.single().unwrap().time(), noon);
assert_eq!(today_midnight.single().unwrap().time(), NaiveTime::MIN);pub const UNIX_EPOCH: DateTime<Utc>
Sourcepub fn format_with_items<'a, I, B>(&self, items: I) -> DelayedFormat<I>
Available on crate feature alloc only.
pub fn format_with_items<'a, I, B>(&self, items: I) -> DelayedFormat<I>
alloc only.Formats the combined date and time with the specified formatting items.
Sourcepub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>>
Available on crate feature alloc only.
pub fn format<'a>(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>>
alloc only.Formats the combined date and time per the specified format string.
See the crate::format::strftime module for the supported escape sequences.
ยงExample
use chrono::prelude::*;
let date_time: DateTime<Utc> = Utc.with_ymd_and_hms(2017, 04, 02, 12, 50, 32).unwrap();
let formatted = format!("{}", date_time.format("%d/%m/%Y %H:%M"));
assert_eq!(formatted, "02/04/2017 12:50");Trait Implementationsยง
Sourceยงimpl Clone for ChronoUnixTimestamp
impl Clone for ChronoUnixTimestamp
Sourceยงfn clone(&self) -> ChronoUnixTimestamp
fn clone(&self) -> ChronoUnixTimestamp
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSourceยงimpl Debug for ChronoUnixTimestamp
impl Debug for ChronoUnixTimestamp
Sourceยงimpl Deref for ChronoUnixTimestamp
impl Deref for ChronoUnixTimestamp
Sourceยงimpl DerefMut for ChronoUnixTimestamp
impl DerefMut for ChronoUnixTimestamp
Sourceยงimpl From<ChronoUnixTimestamp> for Value
impl From<ChronoUnixTimestamp> for Value
Sourceยงfn from(source: ChronoUnixTimestamp) -> Self
fn from(source: ChronoUnixTimestamp) -> Self
Sourceยงimpl From<DateTime<Utc>> for ChronoUnixTimestamp
impl From<DateTime<Utc>> for ChronoUnixTimestamp
Sourceยงfn from(value: ChronoDateTimeUtc) -> Self
fn from(value: ChronoDateTimeUtc) -> Self
Sourceยงimpl Hash for ChronoUnixTimestamp
impl Hash for ChronoUnixTimestamp
Sourceยงimpl PartialEq for ChronoUnixTimestamp
impl PartialEq for ChronoUnixTimestamp
Sourceยงimpl TryGetable for ChronoUnixTimestamp
impl TryGetable for ChronoUnixTimestamp
Sourceยงfn try_get_by<I: ColIdx>(res: &QueryResult, idx: I) -> Result<Self, TryGetError>
fn try_get_by<I: ColIdx>(res: &QueryResult, idx: I) -> Result<Self, TryGetError>
Sourceยงfn try_get(res: &QueryResult, pre: &str, col: &str) -> Result<Self, TryGetError>
fn try_get(res: &QueryResult, pre: &str, col: &str) -> Result<Self, TryGetError>
Sourceยงfn try_get_by_index(
res: &QueryResult,
index: usize,
) -> Result<Self, TryGetError>
fn try_get_by_index( res: &QueryResult, index: usize, ) -> Result<Self, TryGetError>
Sourceยงimpl ValueType for ChronoUnixTimestamp
impl ValueType for ChronoUnixTimestamp
fn try_from(v: Value) -> Result<Self, ValueTypeErr>
fn type_name() -> String
fn array_type() -> ArrayType
fn column_type() -> ColumnType
fn unwrap(v: Value) -> Self
fn expect(v: Value, msg: &str) -> Self
fn is_option() -> bool
fn enum_type_name() -> Option<&'static str>
impl Copy for ChronoUnixTimestamp
impl Eq for ChronoUnixTimestamp
impl StructuralPartialEq for ChronoUnixTimestamp
Auto Trait Implementationsยง
impl Freeze for ChronoUnixTimestamp
impl RefUnwindSafe for ChronoUnixTimestamp
impl Send for ChronoUnixTimestamp
impl Sync for ChronoUnixTimestamp
impl Unpin for ChronoUnixTimestamp
impl UnwindSafe for ChronoUnixTimestamp
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<T> ExprTrait for T
impl<T> ExprTrait for T
Sourceยงfn as_enum<N>(self, type_name: N) -> Exprwhere
N: IntoIden,
fn as_enum<N>(self, type_name: N) -> Exprwhere
N: IntoIden,
AS enum expression. Read moreSourceยงfn cast_as<N>(self, type_name: N) -> Exprwhere
N: IntoIden,
fn cast_as<N>(self, type_name: N) -> Exprwhere
N: IntoIden,
CAST AS expression. Read moreSourceยงfn count_distinct(self) -> Expr
fn count_distinct(self) -> Expr
COUNT function with the DISTINCT modifier. Read moreSourceยงfn equals<C>(self, col: C) -> Exprwhere
C: IntoColumnRef,
fn equals<C>(self, col: C) -> Exprwhere
C: IntoColumnRef,
Sourceยงfn in_subquery(self, sel: SelectStatement) -> Expr
fn in_subquery(self, sel: SelectStatement) -> Expr
IN sub-query expression. Read moreSourceยงfn in_tuples<V, I>(self, v: I) -> Exprwhere
V: IntoValueTuple,
I: IntoIterator<Item = V>,
fn in_tuples<V, I>(self, v: I) -> Exprwhere
V: IntoValueTuple,
I: IntoIterator<Item = V>,
IN sub expression. Read moreSourceยงfn is_not_null(self) -> Expr
fn is_not_null(self) -> Expr
IS NOT NULL expression. Read moreSourceยงfn left_shift<R>(self, right: R) -> Expr
fn left_shift<R>(self, right: R) -> Expr
Sourceยงfn not_between<A, B>(self, a: A, b: B) -> Expr
fn not_between<A, B>(self, a: A, b: B) -> Expr
NOT BETWEEN expression. Read moreSourceยงfn not_equals<C>(self, col: C) -> Exprwhere
C: IntoColumnRef,
fn not_equals<C>(self, col: C) -> Exprwhere
C: IntoColumnRef,
Sourceยงfn not_in_subquery(self, sel: SelectStatement) -> Expr
fn not_in_subquery(self, sel: SelectStatement) -> Expr
NOT IN sub-query expression. Read moreSourceยงfn not_like<L>(self, like: L) -> Exprwhere
L: IntoLikeExpr,
fn not_like<L>(self, like: L) -> Exprwhere
L: IntoLikeExpr,
NOT LIKE expression. Read moreSourceยงfn right_shift<R>(self, right: R) -> Expr
fn right_shift<R>(self, right: R) -> Expr
Sourceยงimpl<V> FromValueTuple for V
impl<V> FromValueTuple for V
fn from_value_tuple<I>(i: I) -> Vwhere
I: IntoValueTuple,
Sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
Sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงimpl<T> IntoValueTuple for Twhere
T: Into<ValueTuple>,
impl<T> IntoValueTuple for Twhere
T: Into<ValueTuple>,
fn into_value_tuple(self) -> ValueTuple
Sourceยงimpl<T> PgExpr for Twhere
T: ExprTrait,
impl<T> PgExpr for Twhere
T: ExprTrait,
Sourceยงfn concatenate<T>(self, right: T) -> Expr
fn concatenate<T>(self, right: T) -> Expr
||) expression. Read moreSourceยงfn matches<T>(self, expr: T) -> Expr
fn matches<T>(self, expr: T) -> Expr
@@) expression. Read moreSourceยงfn contains<T>(self, expr: T) -> Expr
fn contains<T>(self, expr: T) -> Expr
@>) expression. Read moreSourceยงfn contained<T>(self, expr: T) -> Expr
fn contained<T>(self, expr: T) -> Expr
<@) expression. Read moreSourceยงfn ilike<L>(self, like: L) -> Exprwhere
L: IntoLikeExpr,
fn ilike<L>(self, like: L) -> Exprwhere
L: IntoLikeExpr,
ILIKE expression. Read moreSourceยงfn not_ilike<L>(self, like: L) -> Exprwhere
L: IntoLikeExpr,
fn not_ilike<L>(self, like: L) -> Exprwhere
L: IntoLikeExpr,
NOT ILIKE expressionSourceยงfn get_json_field<T>(self, right: T) -> Expr
fn get_json_field<T>(self, right: T) -> Expr
->). Read more