Struct uiuifree_actix_web_util::DateTime
source · [−]pub struct DateTime<Tz> where
Tz: TimeZone, { /* private fields */ }Expand description
ISO 8601 combined date and time with time zone.
There are some constructors implemented here (the from_* methods), but
the general-purpose constructors are all via the methods on the
TimeZone implementations.
Implementations
sourceimpl<Tz> DateTime<Tz> where
Tz: TimeZone,
impl<Tz> DateTime<Tz> where
Tz: TimeZone,
sourcepub fn from_utc(
datetime: NaiveDateTime,
offset: <Tz as TimeZone>::Offset
) -> DateTime<Tz>
pub fn from_utc(
datetime: NaiveDateTime,
offset: <Tz as TimeZone>::Offset
) -> DateTime<Tz>
Makes a new DateTime with given UTC datetime and offset.
The local datetime should be constructed via the TimeZone trait.
Example
use chrono::{DateTime, TimeZone, NaiveDateTime, Utc};
let dt = DateTime::<Utc>::from_utc(NaiveDateTime::from_timestamp(61, 0), Utc);
assert_eq!(Utc.timestamp(61, 0), dt);sourcepub fn from_local(
datetime: NaiveDateTime,
offset: <Tz as TimeZone>::Offset
) -> DateTime<Tz>
pub fn from_local(
datetime: NaiveDateTime,
offset: <Tz as TimeZone>::Offset
) -> DateTime<Tz>
Makes a new DateTime with given local datetime and offset that
presents local timezone.
Example
use chrono::DateTime;
use chrono::naive::NaiveDate;
use chrono::offset::{Utc, FixedOffset};
let naivedatetime_utc = NaiveDate::from_ymd(2000, 1, 12).and_hms(2, 0, 0);
let datetime_utc = DateTime::<Utc>::from_utc(naivedatetime_utc, Utc);
let timezone_east = FixedOffset::east(8 * 60 * 60);
let naivedatetime_east = NaiveDate::from_ymd(2000, 1, 12).and_hms(10, 0, 0);
let datetime_east = DateTime::<FixedOffset>::from_local(naivedatetime_east, timezone_east);
let timezone_west = FixedOffset::west(7 * 60 * 60);
let naivedatetime_west = NaiveDate::from_ymd(2000, 1, 11).and_hms(19, 0, 0);
let datetime_west = DateTime::<FixedOffset>::from_local(naivedatetime_west, timezone_west);
assert_eq!(datetime_east, datetime_utc.with_timezone(&timezone_east));
assert_eq!(datetime_west, datetime_utc.with_timezone(&timezone_west));sourcepub fn date(&self) -> Date<Tz>
pub fn date(&self) -> Date<Tz>
Retrieves a date component
Unless you are immediately planning on turning this into a DateTime
with the same Timezone you should use the
date_naive method.
use chrono::prelude::*;
let date: Date<Utc> = Utc.ymd(2020, 1, 1);
let dt: DateTime<Utc> = date.and_hms(0, 0, 0);
assert_eq!(dt.date(), date);
assert_eq!(dt.date().and_hms(1, 1, 1), date.and_hms(1, 1, 1));sourcepub fn date_naive(&self) -> NaiveDate
pub fn date_naive(&self) -> NaiveDate
Retrieves the Date without an associated timezone
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.
use chrono::prelude::*;
let date: DateTime<Utc> = Utc.ymd(2020, 1, 1).and_hms(0, 0, 0);
let other: DateTime<FixedOffset> = FixedOffset::east(23).ymd(2020, 1, 1).and_hms(0, 0, 0);
assert_eq!(date.date_naive(), other.date_naive());sourcepub fn time(&self) -> NaiveTime
pub fn time(&self) -> NaiveTime
Retrieves a time component.
Unlike date, this is not associated to the time zone.
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”).
sourcepub fn timestamp_millis(&self) -> i64
pub fn timestamp_millis(&self) -> i64
Returns the number of non-leap-milliseconds since January 1, 1970 UTC
Note that this does reduce the number of years that can be represented from ~584 Billion to ~584 Million. (If this is a problem, please file an issue to let me know what domain needs millisecond precision over billions of years, I’m curious.)
Example
use chrono::Utc;
use chrono::TimeZone;
let dt = Utc.ymd(1970, 1, 1).and_hms_milli(0, 0, 1, 444);
assert_eq!(dt.timestamp_millis(), 1_444);
let dt = Utc.ymd(2001, 9, 9).and_hms_milli(1, 46, 40, 555);
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
Note that this does reduce the number of years that can be represented from ~584 Billion to ~584 Thousand. (If this is a problem, please file an issue to let me know what domain needs microsecond precision over millennia, I’m curious.)
Example
use chrono::Utc;
use chrono::TimeZone;
let dt = Utc.ymd(1970, 1, 1).and_hms_micro(0, 0, 1, 444);
assert_eq!(dt.timestamp_micros(), 1_000_444);
let dt = Utc.ymd(2001, 9, 9).and_hms_micro(1, 46, 40, 555);
assert_eq!(dt.timestamp_micros(), 1_000_000_000_000_555);sourcepub fn timestamp_nanos(&self) -> i64
pub fn timestamp_nanos(&self) -> i64
Returns the number of non-leap-nanoseconds since January 1, 1970 UTC
Note that this does reduce the number of years that can be represented from ~584 Billion to ~584. (If this is a problem, please file an issue to let me know what domain needs nanosecond precision over millennia, I’m curious.)
Example
use chrono::Utc;
use chrono::TimeZone;
let dt = Utc.ymd(1970, 1, 1).and_hms_nano(0, 0, 1, 444);
assert_eq!(dt.timestamp_nanos(), 1_000_000_444);
let dt = Utc.ymd(2001, 9, 9).and_hms_nano(1, 46, 40, 555);
assert_eq!(dt.timestamp_nanos(), 1_000_000_000_000_000_555);sourcepub fn timestamp_subsec_millis(&self) -> u32
pub fn timestamp_subsec_millis(&self) -> u32
Returns the number of milliseconds since the last second boundary
warning: in event of a leap second, this may exceed 999
note: this is not the number of milliseconds since January 1, 1970 0:00:00 UTC
sourcepub fn timestamp_subsec_micros(&self) -> u32
pub fn timestamp_subsec_micros(&self) -> u32
Returns the number of microseconds since the last second boundary
warning: in event of a leap second, this may exceed 999_999
note: this is not the number of microseconds since January 1, 1970 0:00:00 UTC
sourcepub fn timestamp_subsec_nanos(&self) -> u32
pub fn timestamp_subsec_nanos(&self) -> u32
Returns the number of nanoseconds since the last second boundary
warning: in event of a leap second, this may exceed 999_999_999
note: this is not the number of nanoseconds since January 1, 1970 0:00:00 UTC
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 checked_add_signed(self, rhs: Duration) -> Option<DateTime<Tz>>
pub fn checked_add_signed(self, rhs: Duration) -> Option<DateTime<Tz>>
Adds given Duration to the current date and time.
Returns None when it will result in overflow.
sourcepub fn checked_sub_signed(self, rhs: Duration) -> Option<DateTime<Tz>>
pub fn checked_sub_signed(self, rhs: Duration) -> Option<DateTime<Tz>>
Subtracts given Duration from the current date and time.
Returns None when it will result in overflow.
sourcepub fn signed_duration_since<Tz2>(self, rhs: DateTime<Tz2>) -> Duration where
Tz2: TimeZone,
pub fn signed_duration_since<Tz2>(self, rhs: DateTime<Tz2>) -> Duration where
Tz2: TimeZone,
Subtracts another DateTime from the current date and time.
This does not overflow or underflow at all.
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.
sourcepub fn years_since(&self, base: DateTime<Tz>) -> Option<u32>
pub fn years_since(&self, base: DateTime<Tz>) -> Option<u32>
Retrieve the elapsed years from now to the given DateTime.
sourceimpl DateTime<FixedOffset>
impl DateTime<FixedOffset>
sourcepub fn parse_from_rfc2822(s: &str) -> Result<DateTime<FixedOffset>, ParseError>
pub fn parse_from_rfc2822(s: &str) -> Result<DateTime<FixedOffset>, ParseError>
Parses an RFC 2822 date and time string such as Tue, 1 Jul 2003 10:52:37 +0200,
then returns a new DateTime with a parsed FixedOffset.
RFC 2822 is the internet message standard that specifies the representation of times in HTTP and email headers.
assert_eq!(
DateTime::parse_from_rfc2822("Wed, 18 Feb 2015 23:16:09 GMT").unwrap(),
FixedOffset::east(0).ymd(2015, 2, 18).and_hms(23, 16, 9)
);sourcepub fn parse_from_rfc3339(s: &str) -> Result<DateTime<FixedOffset>, ParseError>
pub fn parse_from_rfc3339(s: &str) -> Result<DateTime<FixedOffset>, ParseError>
Parses an RFC 3339 and ISO 8601 date and time string such as 1996-12-19T16:39:57-08:00,
then returns a new DateTime with a parsed FixedOffset.
Why isn’t this named parse_from_iso8601? That’s because ISO 8601 allows some freedom
over the syntax and RFC 3339 exercises that freedom to rigidly define a fixed format.
sourcepub fn parse_from_str(
s: &str,
fmt: &str
) -> Result<DateTime<FixedOffset>, ParseError>
pub fn parse_from_str(
s: &str,
fmt: &str
) -> Result<DateTime<FixedOffset>, ParseError>
Parses a string with the specified format string and returns a new
DateTime with a parsed FixedOffset.
See the crate::format::strftime module on the supported escape
sequences.
See also TimeZone::datetime_from_str which gives a local
DateTime on specific time zone.
Note that this method requires a timezone in the string. See
NaiveDateTime::parse_from_str
for a version that does not require a timezone in the to-be-parsed str.
Example
use chrono::{DateTime, FixedOffset, TimeZone};
let dt = DateTime::parse_from_str(
"1983 Apr 13 12:09:14.274 +0000", "%Y %b %d %H:%M:%S%.3f %z");
assert_eq!(dt, Ok(FixedOffset::east(0).ymd(1983, 4, 13).and_hms_milli(12, 9, 14, 274)));sourceimpl<Tz> DateTime<Tz> where
Tz: TimeZone,
<Tz as TimeZone>::Offset: Display,
impl<Tz> DateTime<Tz> where
Tz: TimeZone,
<Tz as TimeZone>::Offset: Display,
sourcepub fn to_rfc2822(&self) -> String
pub fn to_rfc2822(&self) -> String
Returns an RFC 2822 date and time string such as Tue, 1 Jul 2003 10:52:37 +0200.
sourcepub fn to_rfc3339(&self) -> String
pub fn to_rfc3339(&self) -> String
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
pub fn to_rfc3339_opts(&self, secform: SecondsFormat, use_z: bool) -> String
Return an RFC 3339 and ISO 8601 date and time string with subseconds
formatted as per a SecondsFormat.
If passed use_z true and the timezone is UTC (offset 0), use ‘Z’, as
per Fixed::TimezoneOffsetColonZ If passed use_z false, use
Fixed::TimezoneOffsetColon
Examples
let dt = Utc.ymd(2018, 1, 26).and_hms_micro(18, 30, 9, 453_829);
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(8 * 60 * 60);
let dt = pst.ymd(2018, 1, 26).and_hms_micro(10, 30, 9, 453_829);
assert_eq!(dt.to_rfc3339_opts(SecondsFormat::Secs, true),
"2018-01-26T10:30:09+08:00");sourcepub fn format_with_items<'a, I, B>(&self, items: I) -> DelayedFormat<I> where
I: Iterator<Item = B> + Clone,
B: Borrow<Item<'a>>,
pub fn format_with_items<'a, I, B>(&self, items: I) -> DelayedFormat<I> where
I: Iterator<Item = B> + Clone,
B: Borrow<Item<'a>>,
Formats the combined date and time with the specified formatting items.
sourcepub fn format(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>>
pub fn format(&self, fmt: &'a str) -> DelayedFormat<StrftimeItems<'a>>
Formats the combined date and time with the specified format string.
See the crate::format::strftime module
on the supported escape sequences.
Example
use chrono::prelude::*;
let date_time: DateTime<Utc> = Utc.ymd(2017, 04, 02).and_hms(12, 50, 32);
let formatted = format!("{}", date_time.format("%d/%m/%Y %H:%M"));
assert_eq!(formatted, "02/04/2017 12:50");Trait Implementations
sourceimpl<Tz> Add<FixedOffset> for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> Add<FixedOffset> for DateTime<Tz> where
Tz: TimeZone,
sourceimpl<Tz> AddAssign<Duration> for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> AddAssign<Duration> for DateTime<Tz> where
Tz: TimeZone,
sourcefn add_assign(&mut self, rhs: Duration)
fn add_assign(&mut self, rhs: Duration)
Performs the += operation. Read more
sourceimpl<Tz> Datelike for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> Datelike for DateTime<Tz> where
Tz: TimeZone,
sourcefn year(&self) -> i32
fn year(&self) -> i32
Returns the year number in the calendar date.
sourcefn with_year(&self, year: i32) -> Option<DateTime<Tz>>
fn with_year(&self, year: i32) -> Option<DateTime<Tz>>
Makes a new value with the year number changed. Read more
sourcefn with_month(&self, month: u32) -> Option<DateTime<Tz>>
fn with_month(&self, month: u32) -> Option<DateTime<Tz>>
Makes a new value with the month number (starting from 1) changed. Read more
sourcefn with_month0(&self, month0: u32) -> Option<DateTime<Tz>>
fn with_month0(&self, month0: u32) -> Option<DateTime<Tz>>
Makes a new value with the month number (starting from 0) changed. Read more
sourcefn with_day(&self, day: u32) -> Option<DateTime<Tz>>
fn with_day(&self, day: u32) -> Option<DateTime<Tz>>
Makes a new value with the day of month (starting from 1) changed. Read more
sourcefn with_day0(&self, day0: u32) -> Option<DateTime<Tz>>
fn with_day0(&self, day0: u32) -> Option<DateTime<Tz>>
Makes a new value with the day of month (starting from 0) changed. Read more
sourcefn with_ordinal(&self, ordinal: u32) -> Option<DateTime<Tz>>
fn with_ordinal(&self, ordinal: u32) -> Option<DateTime<Tz>>
Makes a new value with the day of year (starting from 1) changed. Read more
sourcefn with_ordinal0(&self, ordinal0: u32) -> Option<DateTime<Tz>>
fn with_ordinal0(&self, ordinal0: u32) -> Option<DateTime<Tz>>
Makes a new value with the day of year (starting from 0) changed. Read more
sourcefn year_ce(&self) -> (bool, u32)
fn year_ce(&self) -> (bool, u32)
Returns the absolute year number starting from 1 with a boolean flag, which is false when the year predates the epoch (BCE/BC) and true otherwise (CE/AD). Read more
sourcefn num_days_from_ce(&self) -> i32
fn num_days_from_ce(&self) -> i32
Counts the days in the proleptic Gregorian calendar, with January 1, Year 1 (CE) as day 1. Read more
sourceimpl Default for DateTime<FixedOffset>
impl Default for DateTime<FixedOffset>
sourcefn default() -> DateTime<FixedOffset>
fn default() -> DateTime<FixedOffset>
Returns the “default value” for a type. Read more
sourceimpl<'de> Deserialize<'de> for DateTime<FixedOffset>
impl<'de> Deserialize<'de> for DateTime<FixedOffset>
Deserialize a value that optionally includes a timezone offset in its string representation
The value to be deserialized must be an rfc3339 string.
See the serde module for alternate
deserialization formats.
sourcefn deserialize<D>(
deserializer: D
) -> Result<DateTime<FixedOffset>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<DateTime<FixedOffset>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<'de> Deserialize<'de> for DateTime<Local>
impl<'de> Deserialize<'de> for DateTime<Local>
Deserialize a value that includes no timezone in its string representation
The value to be deserialized must be an rfc3339 string.
See the serde module for alternate
serialization formats.
sourcefn deserialize<D>(
deserializer: D
) -> Result<DateTime<Local>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<DateTime<Local>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<'de> Deserialize<'de> for DateTime<Utc>
impl<'de> Deserialize<'de> for DateTime<Utc>
Deserialize into a UTC value
The value to be deserialized must be an rfc3339 string.
See the serde module for alternate
deserialization formats.
sourcefn deserialize<D>(
deserializer: D
) -> Result<DateTime<Utc>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
fn deserialize<D>(
deserializer: D
) -> Result<DateTime<Utc>, <D as Deserializer<'de>>::Error> where
D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<Tz> DurationRound for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> DurationRound for DateTime<Tz> where
Tz: TimeZone,
type Err = RoundingError
type Err = RoundingError
Error that can occur in rounding or truncating
sourcefn duration_round(
self,
duration: Duration
) -> Result<DateTime<Tz>, <DateTime<Tz> as DurationRound>::Err>
fn duration_round(
self,
duration: Duration
) -> Result<DateTime<Tz>, <DateTime<Tz> as DurationRound>::Err>
Return a copy rounded by Duration. Read more
sourcefn duration_trunc(
self,
duration: Duration
) -> Result<DateTime<Tz>, <DateTime<Tz> as DurationRound>::Err>
fn duration_trunc(
self,
duration: Duration
) -> Result<DateTime<Tz>, <DateTime<Tz> as DurationRound>::Err>
Return a copy truncated by Duration. Read more
sourceimpl From<DateTime<FixedOffset>> for DateTime<Local>
impl From<DateTime<FixedOffset>> for DateTime<Local>
Convert a DateTime<FixedOffset> instance into a DateTime<Local> instance.
sourcefn from(src: DateTime<FixedOffset>) -> DateTime<Local>
fn from(src: DateTime<FixedOffset>) -> DateTime<Local>
Convert this DateTime<FixedOffset> instance into a DateTime<Local> instance.
Conversion is performed via DateTime::with_timezone. Returns the equivalent value in local
time.
sourceimpl From<DateTime<FixedOffset>> for DateTime<Utc>
impl From<DateTime<FixedOffset>> for DateTime<Utc>
Convert a DateTime<FixedOffset> instance into a DateTime<Utc> instance.
sourcefn from(src: DateTime<FixedOffset>) -> DateTime<Utc>
fn from(src: DateTime<FixedOffset>) -> DateTime<Utc>
Convert this DateTime<FixedOffset> instance into a DateTime<Utc> instance.
Conversion is performed via DateTime::with_timezone, accounting for the timezone
difference.
sourceimpl From<DateTime<Local>> for DateTime<FixedOffset>
impl From<DateTime<Local>> for DateTime<FixedOffset>
Convert a DateTime<Local> instance into a DateTime<FixedOffset> instance.
sourcefn from(src: DateTime<Local>) -> DateTime<FixedOffset>
fn from(src: DateTime<Local>) -> DateTime<FixedOffset>
Convert this DateTime<Local> instance into a DateTime<FixedOffset> instance.
Conversion is performed via DateTime::with_timezone. Note that the converted value returned
by this will be created with a fixed timezone offset of 0.
sourceimpl From<DateTime<Local>> for DateTime<Utc>
impl From<DateTime<Local>> for DateTime<Utc>
Convert a DateTime<Local> instance into a DateTime<Utc> instance.
sourceimpl From<DateTime<Utc>> for DateTime<FixedOffset>
impl From<DateTime<Utc>> for DateTime<FixedOffset>
Convert a DateTime<Utc> instance into a DateTime<FixedOffset> instance.
sourcefn from(src: DateTime<Utc>) -> DateTime<FixedOffset>
fn from(src: DateTime<Utc>) -> DateTime<FixedOffset>
Convert this DateTime<Utc> instance into a DateTime<FixedOffset> instance.
Conversion is done via DateTime::with_timezone. Note that the converted value returned by
this will be created with a fixed timezone offset of 0.
sourceimpl From<DateTime<Utc>> for DateTime<Local>
impl From<DateTime<Utc>> for DateTime<Local>
Convert a DateTime<Utc> instance into a DateTime<Local> instance.
sourceimpl From<SystemTime> for DateTime<Local>
impl From<SystemTime> for DateTime<Local>
sourcefn from(t: SystemTime) -> DateTime<Local>
fn from(t: SystemTime) -> DateTime<Local>
Converts to this type from the input type.
sourceimpl From<SystemTime> for DateTime<Utc>
impl From<SystemTime> for DateTime<Utc>
sourcefn from(t: SystemTime) -> DateTime<Utc>
fn from(t: SystemTime) -> DateTime<Utc>
Converts to this type from the input type.
sourceimpl FromStr for DateTime<FixedOffset>
impl FromStr for DateTime<FixedOffset>
Accepts a relaxed form of RFC3339. A space or a ‘T’ are acepted as the separator between the date and time parts. Additional spaces are allowed between each component.
All of these examples are equivalent:
"2012-12-12T12:12:12Z".parse::<DateTime<FixedOffset>>();
"2012-12-12 12:12:12Z".parse::<DateTime<FixedOffset>>();
"2012- 12-12T12: 12:12Z".parse::<DateTime<FixedOffset>>();type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
sourcefn from_str(s: &str) -> Result<DateTime<FixedOffset>, ParseError>
fn from_str(s: &str) -> Result<DateTime<FixedOffset>, ParseError>
Parses a string s to return a value of this type. Read more
sourceimpl FromStr for DateTime<Local>
impl FromStr for DateTime<Local>
Accepts a relaxed form of RFC3339. A space or a ‘T’ are acepted as the separator between the date and time parts. Additional spaces are allowed between each component.
All of these examples are equivalent:
"2012-12-12T12:12:12Z".parse::<DateTime<Local>>();
"2012-12-12 12:12:12Z".parse::<DateTime<Local>>();
"2012- 12-12T12: 12:12Z".parse::<DateTime<Local>>();type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
sourceimpl FromStr for DateTime<Utc>
impl FromStr for DateTime<Utc>
Accepts a relaxed form of RFC3339. A space or a ‘T’ are acepted as the separator between the date and time parts. Additional spaces are allowed between each component.
All of these examples are equivalent:
"2012-12-12T12:12:12Z".parse::<DateTime<Utc>>();
"2012-12-12 12:12:12Z".parse::<DateTime<Utc>>();
"2012- 12-12T12: 12:12Z".parse::<DateTime<Utc>>();type Err = ParseError
type Err = ParseError
The associated error which can be returned from parsing.
sourceimpl<Tz> Ord for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> Ord for DateTime<Tz> where
Tz: TimeZone,
1.21.0 · sourcefn max(self, other: Self) -> Self
fn max(self, other: Self) -> Self
Compares and returns the maximum of two values. Read more
1.21.0 · sourcefn min(self, other: Self) -> Self
fn min(self, other: Self) -> Self
Compares and returns the minimum of two values. Read more
1.50.0 · sourcefn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
fn clamp(self, min: Self, max: Self) -> Self where
Self: PartialOrd<Self>,
Restrict a value to a certain interval. Read more
sourceimpl<Tz, Tz2> PartialOrd<DateTime<Tz2>> for DateTime<Tz> where
Tz: TimeZone,
Tz2: TimeZone,
impl<Tz, Tz2> PartialOrd<DateTime<Tz2>> for DateTime<Tz> where
Tz: TimeZone,
Tz2: TimeZone,
sourcefn partial_cmp(&self, other: &DateTime<Tz2>) -> Option<Ordering>
fn partial_cmp(&self, other: &DateTime<Tz2>) -> Option<Ordering>
Compare two DateTimes based on their true time, ignoring time zones
Example
use chrono::prelude::*;
let earlier = Utc.ymd(2015, 5, 15).and_hms(2, 0, 0).with_timezone(&FixedOffset::west(1 * 3600));
let later = Utc.ymd(2015, 5, 15).and_hms(3, 0, 0).with_timezone(&FixedOffset::west(5 * 3600));
assert_eq!(earlier.to_string(), "2015-05-15 01:00:00 -01:00");
assert_eq!(later.to_string(), "2015-05-14 22:00:00 -05:00");
assert!(later > earlier);1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn 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 more
sourceimpl<Tz> Serialize for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> Serialize for DateTime<Tz> where
Tz: TimeZone,
Serialize into a rfc3339 time string
See the serde module for alternate
serializations.
sourcefn 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 value into the given Serde serializer. Read more
sourceimpl<Tz> Sub<FixedOffset> for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> Sub<FixedOffset> for DateTime<Tz> where
Tz: TimeZone,
sourceimpl<Tz> SubAssign<Duration> for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> SubAssign<Duration> for DateTime<Tz> where
Tz: TimeZone,
sourcefn sub_assign(&mut self, rhs: Duration)
fn sub_assign(&mut self, rhs: Duration)
Performs the -= operation. Read more
sourceimpl<Tz> Timelike for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> Timelike for DateTime<Tz> where
Tz: TimeZone,
sourcefn nanosecond(&self) -> u32
fn nanosecond(&self) -> u32
Returns the number of nanoseconds since the whole non-leap second. The range from 1,000,000,000 to 1,999,999,999 represents the leap second. Read more
sourcefn with_hour(&self, hour: u32) -> Option<DateTime<Tz>>
fn with_hour(&self, hour: u32) -> Option<DateTime<Tz>>
Makes a new value with the hour number changed. Read more
sourcefn with_minute(&self, min: u32) -> Option<DateTime<Tz>>
fn with_minute(&self, min: u32) -> Option<DateTime<Tz>>
Makes a new value with the minute number changed. Read more
sourcefn with_second(&self, sec: u32) -> Option<DateTime<Tz>>
fn with_second(&self, sec: u32) -> Option<DateTime<Tz>>
Makes a new value with the second number changed. Read more
sourcefn with_nanosecond(&self, nano: u32) -> Option<DateTime<Tz>>
fn with_nanosecond(&self, nano: u32) -> Option<DateTime<Tz>>
Makes a new value with nanoseconds since the whole non-leap second changed. Read more
sourcefn hour12(&self) -> (bool, u32)
fn hour12(&self) -> (bool, u32)
Returns the hour number from 1 to 12 with a boolean flag, which is false for AM and true for PM. Read more
sourcefn num_seconds_from_midnight(&self) -> u32
fn num_seconds_from_midnight(&self) -> u32
Returns the number of non-leap seconds past the last midnight.
impl<Tz> Copy for DateTime<Tz> where
Tz: TimeZone,
<Tz as TimeZone>::Offset: Copy,
impl<Tz> Eq for DateTime<Tz> where
Tz: TimeZone,
impl<Tz> Send for DateTime<Tz> where
Tz: TimeZone,
<Tz as TimeZone>::Offset: Send,
Auto Trait Implementations
impl<Tz> RefUnwindSafe for DateTime<Tz> where
<Tz as TimeZone>::Offset: RefUnwindSafe,
impl<Tz> Sync for DateTime<Tz> where
<Tz as TimeZone>::Offset: Sync,
impl<Tz> Unpin for DateTime<Tz> where
<Tz as TimeZone>::Offset: Unpin,
impl<Tz> UnwindSafe for DateTime<Tz> where
<Tz as TimeZone>::Offset: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcefn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
impl<T> FmtForward for T
impl<T> FmtForward for T
fn fmt_binary(self) -> FmtBinary<Self> where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self> where
Self: Binary,
Causes self to use its Binary implementation when Debug-formatted.
fn fmt_display(self) -> FmtDisplay<Self> where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self> where
Self: Display,
Causes self to use its Display implementation when
Debug-formatted. Read more
fn fmt_lower_exp(self) -> FmtLowerExp<Self> where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self> where
Self: LowerExp,
Causes self to use its LowerExp implementation when
Debug-formatted. Read more
fn fmt_lower_hex(self) -> FmtLowerHex<Self> where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self> where
Self: LowerHex,
Causes self to use its LowerHex implementation when
Debug-formatted. Read more
fn fmt_octal(self) -> FmtOctal<Self> where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self> where
Self: Octal,
Causes self to use its Octal implementation when Debug-formatted.
fn fmt_pointer(self) -> FmtPointer<Self> where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self> where
Self: Pointer,
Causes self to use its Pointer implementation when
Debug-formatted. Read more
fn fmt_upper_exp(self) -> FmtUpperExp<Self> where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self> where
Self: UpperExp,
Causes self to use its UpperExp implementation when
Debug-formatted. Read more
fn fmt_upper_hex(self) -> FmtUpperHex<Self> where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self> where
Self: UpperHex,
Causes self to use its UpperHex implementation when
Debug-formatted. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
impl<T, U, I> LiftInto<U, I> for T where
U: LiftFrom<T, I>,
impl<T, U, I> LiftInto<U, I> for T where
U: LiftFrom<T, I>,
fn lift_into(self) -> U
fn lift_into(self) -> U
Performs the indexed conversion.
impl<T> Pipe for T where
T: ?Sized,
impl<T> Pipe for T where
T: ?Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> R
Pipes by value. This is generally the method you want to use. Read more
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R where
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> R where
R: 'a,
Borrows self and passes that borrow into the pipe function. Read more
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R where
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> R where
R: 'a,
Mutably borrows self and passes that borrow into the pipe function. Read more
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R where
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R where
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
Borrows self, then passes self.borrow() into the pipe function. Read more
fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R where
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> R where
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
Mutably borrows self, then passes self.borrow_mut() into the pipe
function. Read more
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R where
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R where
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
Borrows self, then passes self.as_ref() into the pipe function.
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R where
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R where
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
Mutably borrows self, then passes self.as_mut() into the pipe
function. Read more
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Deref<Target = T>,
T: 'a + ?Sized,
R: 'a,
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R where
Self: Deref<Target = T>,
T: 'a + ?Sized,
R: 'a,
Borrows self, then passes self.deref() into the pipe function.
impl<T> Pointable for T
impl<T> Pointable for T
sourceimpl<T> SubsecRound for T where
T: Add<Duration, Output = T> + Sub<Duration, Output = T> + Timelike,
impl<T> SubsecRound for T where
T: Add<Duration, Output = T> + Sub<Duration, Output = T> + Timelike,
sourcefn round_subsecs(self, digits: u16) -> T
fn round_subsecs(self, digits: u16) -> T
Return a copy rounded to the specified number of subsecond digits. With 9 or more digits, self is returned unmodified. Halfway values are rounded up (away from zero). Read more
sourcefn trunc_subsecs(self, digits: u16) -> T
fn trunc_subsecs(self, digits: u16) -> T
Return a copy truncated to the specified number of subsecond digits. With 9 or more digits, self is returned unmodified. Read more
impl<T> Tap for T
impl<T> Tap for T
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
Immutable access to the Borrow<B> of a value. Read more
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
Mutable access to the BorrowMut<B> of a value. Read more
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
Immutable access to the AsRef<R> view of a value. Read more
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
Mutable access to the AsMut<R> view of a value. Read more
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self where
Self: Deref<Target = T>,
T: ?Sized,
Immutable access to the Deref::Target of a value. Read more
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self where
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self where
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
Mutable access to the Deref::Target of a value. Read more
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls .tap() only in debug builds, and is erased in release builds.
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls .tap_mut() only in debug builds, and is erased in release
builds. Read more
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self where
Self: Borrow<B>,
B: ?Sized,
Calls .tap_borrow() only in debug builds, and is erased in release
builds. Read more
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self where
Self: BorrowMut<B>,
B: ?Sized,
Calls .tap_borrow_mut() only in debug builds, and is erased in release
builds. Read more
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self where
Self: AsRef<R>,
R: ?Sized,
Calls .tap_ref() only in debug builds, and is erased in release
builds. Read more
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self where
Self: AsMut<R>,
R: ?Sized,
Calls .tap_ref_mut() only in debug builds, and is erased in release
builds. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
fn vzip(self) -> V
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more