Struct time::PrimitiveDateTime [−][src]
pub struct PrimitiveDateTime { /* fields omitted */ }Expand description
Combined date and time.
Implementations
impl PrimitiveDateTime[src]
impl PrimitiveDateTime[src]pub const fn new(date: Date, time: Time) -> Self[src]
pub const fn new(date: Date, time: Time) -> Self[src]Create a new PrimitiveDateTime from the provided Date and Time.
assert_eq!( PrimitiveDateTime::new(date!(2019-01-01), time!(0:00)), date!(2019-01-01).midnight(), );
pub fn now() -> Self[src]
This is supported on crate feature std only.
pub fn now() -> Self[src]std only.Create a new PrimitiveDateTime with the current date and time (UTC).
assert!(PrimitiveDateTime::now().year() >= 2019);
pub const fn unix_epoch() -> Self[src]
pub const fn unix_epoch() -> Self[src]Midnight, 1 January, 1970 (UTC).
assert_eq!( PrimitiveDateTime::unix_epoch(), date!(1970-01-01).midnight() );
pub fn from_unix_timestamp(timestamp: i64) -> Self[src]
pub fn from_unix_timestamp(timestamp: i64) -> Self[src]Create a PrimitiveDateTime from the provided Unix timestamp.
assert_eq!( PrimitiveDateTime::from_unix_timestamp(0), PrimitiveDateTime::unix_epoch() ); assert_eq!( PrimitiveDateTime::from_unix_timestamp(1_546_300_800), date!(2019-01-01).midnight(), );
pub fn timestamp(self) -> i64[src]
pub fn timestamp(self) -> i64[src]Get the Unix timestamp
representing the PrimitiveDateTime.
assert_eq!(PrimitiveDateTime::unix_epoch().timestamp(), 0); assert_eq!(date!(2019-01-01).midnight().timestamp(), 1_546_300_800);
pub const fn date(self) -> Date[src]
pub const fn date(self) -> Date[src]Get the Date component of the PrimitiveDateTime.
assert_eq!( date!(2019-01-01).midnight().date(), date!(2019-01-01) );
pub const fn time(self) -> Time[src]
pub const fn time(self) -> Time[src]Get the Time component of the PrimitiveDateTime.
assert_eq!(date!(2019-01-01).midnight().time(), time!(0:00));
pub fn year(self) -> i32[src]
pub fn year(self) -> i32[src]Get the year of the date.
assert_eq!(date!(2019-01-01).midnight().year(), 2019); assert_eq!(date!(2019-12-31).midnight().year(), 2019); assert_eq!(date!(2020-01-01).midnight().year(), 2020);
pub fn month(self) -> u8[src]
pub fn month(self) -> u8[src]Get the month of the date. If fetching both the month and day, it is
more efficient to use PrimitiveDateTime::month_day.
The returned value will always be in the range 1..=12.
assert_eq!(date!(2019-01-01).midnight().month(), 1); assert_eq!(date!(2019-12-31).midnight().month(), 12);
pub fn day(self) -> u8[src]
pub fn day(self) -> u8[src]Get the day of the date. If fetching both the month and day, it is
more efficient to use PrimitiveDateTime::month_day.
The returned value will always be in the range 1..=31.
assert_eq!(date!(2019-1-1).midnight().day(), 1); assert_eq!(date!(2019-12-31).midnight().day(), 31);
pub fn month_day(self) -> (u8, u8)[src]
pub fn month_day(self) -> (u8, u8)[src]Get the month and day of the date. This is more efficient than fetching the components individually.
The month component will always be in the range 1..=12;
the day component in 1..=31.
assert_eq!(date!(2019-01-01).midnight().month_day(), (1, 1)); assert_eq!(date!(2019-12-31).midnight().month_day(), (12, 31));
pub fn ordinal(self) -> u16[src]
pub fn ordinal(self) -> u16[src]Get the day of the year.
The returned value will always be in the range 1..=366 (1..=365 for
common years).
assert_eq!(date!(2019-01-01).midnight().ordinal(), 1); assert_eq!(date!(2019-12-31).midnight().ordinal(), 365);
pub fn iso_year_week(self) -> (i32, u8)[src]
pub fn iso_year_week(self) -> (i32, u8)[src]Get the ISO 8601 year and week number.
assert_eq!(date!(2019-01-01).midnight().iso_year_week(), (2019, 1)); assert_eq!(date!(2019-10-04).midnight().iso_year_week(), (2019, 40)); assert_eq!(date!(2020-01-01).midnight().iso_year_week(), (2020, 1)); assert_eq!(date!(2020-12-31).midnight().iso_year_week(), (2020, 53)); assert_eq!(date!(2021-01-01).midnight().iso_year_week(), (2020, 53));
pub fn week(self) -> u8[src]
pub fn week(self) -> u8[src]Get the ISO week number.
The returned value will always be in the range 1..=53.
assert_eq!(date!(2019-01-01).midnight().week(), 1); assert_eq!(date!(2019-10-04).midnight().week(), 40); assert_eq!(date!(2020-01-01).midnight().week(), 1); assert_eq!(date!(2020-12-31).midnight().week(), 53); assert_eq!(date!(2021-01-01).midnight().week(), 53);
pub fn sunday_based_week(self) -> u8[src]
pub fn sunday_based_week(self) -> u8[src]Get the week number where week 1 begins on the first Sunday.
The returned value will always be in the range 0..=53.
assert_eq!(date!(2019-01-01).midnight().sunday_based_week(), 0); assert_eq!(date!(2020-01-01).midnight().sunday_based_week(), 0); assert_eq!(date!(2020-12-31).midnight().sunday_based_week(), 52); assert_eq!(date!(2021-01-01).midnight().sunday_based_week(), 0);
pub fn monday_based_week(self) -> u8[src]
pub fn monday_based_week(self) -> u8[src]Get the week number where week 1 begins on the first Monday.
The returned value will always be in the range 0..=53.
assert_eq!(date!(2019-01-01).midnight().monday_based_week(), 0); assert_eq!(date!(2020-01-01).midnight().monday_based_week(), 0); assert_eq!(date!(2020-12-31).midnight().monday_based_week(), 52); assert_eq!(date!(2021-01-01).midnight().monday_based_week(), 0);
pub fn weekday(self) -> Weekday[src]
pub fn weekday(self) -> Weekday[src]Get the weekday.
This current uses Zeller’s congruence internally.
assert_eq!(date!(2019-01-01).midnight().weekday(), Tuesday); assert_eq!(date!(2019-02-01).midnight().weekday(), Friday); assert_eq!(date!(2019-03-01).midnight().weekday(), Friday); assert_eq!(date!(2019-04-01).midnight().weekday(), Monday); assert_eq!(date!(2019-05-01).midnight().weekday(), Wednesday); assert_eq!(date!(2019-06-01).midnight().weekday(), Saturday); assert_eq!(date!(2019-07-01).midnight().weekday(), Monday); assert_eq!(date!(2019-08-01).midnight().weekday(), Thursday); assert_eq!(date!(2019-09-01).midnight().weekday(), Sunday); assert_eq!(date!(2019-10-01).midnight().weekday(), Tuesday); assert_eq!(date!(2019-11-01).midnight().weekday(), Friday); assert_eq!(date!(2019-12-01).midnight().weekday(), Sunday);
pub const fn hour(self) -> u8[src]
pub const fn hour(self) -> u8[src]Get the clock hour.
The returned value will always be in the range 0..24.
assert_eq!(date!(2019-01-01).midnight().hour(), 0); assert_eq!(date!(2019-01-01).with_time(time!(23:59:59)).hour(), 23);
pub const fn minute(self) -> u8[src]
pub const fn minute(self) -> u8[src]Get the minute within the hour.
The returned value will always be in the range 0..60.
assert_eq!(date!(2019-01-01).midnight().minute(), 0); assert_eq!(date!(2019-01-01).with_time(time!(23:59:59)).minute(), 59);
pub const fn second(self) -> u8[src]
pub const fn second(self) -> u8[src]Get the second within the minute.
The returned value will always be in the range 0..60.
assert_eq!(date!(2019-01-01).midnight().second(), 0); assert_eq!(date!(2019-01-01).with_time(time!(23:59:59)).second(), 59);
pub const fn millisecond(self) -> u16[src]
pub const fn millisecond(self) -> u16[src]Get the milliseconds within the second.
The returned value will always be in the range 0..1_000.
assert_eq!(date!(2019-01-01).midnight().millisecond(), 0); assert_eq!(date!(2019-01-01).with_time(time!(23:59:59.999)).millisecond(), 999);
pub const fn microsecond(self) -> u32[src]
pub const fn microsecond(self) -> u32[src]Get the microseconds within the second.
The returned value will always be in the range 0..1_000_000.
assert_eq!(date!(2019-01-01).midnight().microsecond(), 0); assert_eq!(date!(2019-01-01).with_time(time!(23:59:59.999_999)).microsecond(), 999_999);
pub const fn nanosecond(self) -> u32[src]
pub const fn nanosecond(self) -> u32[src]Get the nanoseconds within the second.
The returned value will always be in the range 0..1_000_000_000.
assert_eq!(date!(2019-01-01).midnight().nanosecond(), 0); assert_eq!( date!(2019-01-01).with_time(time!(23:59:59.999_999_999)).nanosecond(), 999_999_999, );
pub const fn using_offset(self, offset: UtcOffset) -> OffsetDateTime[src]
pub const fn using_offset(self, offset: UtcOffset) -> OffsetDateTime[src]Assuming that the existing PrimitiveDateTime represents a moment in
the UTC, return an OffsetDateTime with the provided UtcOffset.
assert_eq!( date!(2019-01-01).midnight().using_offset(offset!(UTC)).timestamp(), 1_546_300_800, );
impl PrimitiveDateTime[src]
impl PrimitiveDateTime[src]Methods that allow formatting the PrimitiveDateTime.
pub fn format(self, format: &str) -> String[src]
pub fn format(self, format: &str) -> String[src]Format the PrimitiveDateTime using the provided string.
assert_eq!( date!(2019-01-02).midnight().format("%F %r"), "2019-01-02 12:00:00 am" );
pub fn parse(s: &str, format: &str) -> Result<Self, ParseError>[src]
pub fn parse(s: &str, format: &str) -> Result<Self, ParseError>[src]Attempt to parse a PrimitiveDateTime using the provided string.
assert_eq!( PrimitiveDateTime::parse("2019-01-02 00:00:00", "%F %T"), Ok(date!(2019-01-02).midnight()), ); assert_eq!( PrimitiveDateTime::parse("2019-002 23:59:59", "%Y-%j %T"), Ok(date!(2019-002).with_time(time!(23:59:59))) ); assert_eq!( PrimitiveDateTime::parse("2019-W01-3 12:00:00 pm", "%G-W%V-%u %r"), Ok(date!(2019-W01-3).with_time(time!(12:00))), );
Trait Implementations
impl Add<Duration> for PrimitiveDateTime[src]
impl Add<Duration> for PrimitiveDateTime[src]impl Add<Duration> for PrimitiveDateTime[src]
impl Add<Duration> for PrimitiveDateTime[src]impl AddAssign<Duration> for PrimitiveDateTime[src]
impl AddAssign<Duration> for PrimitiveDateTime[src]fn add_assign(&mut self, duration: Duration)[src]
fn add_assign(&mut self, duration: Duration)[src]Performs the += operation. Read more
impl AddAssign<Duration> for PrimitiveDateTime[src]
impl AddAssign<Duration> for PrimitiveDateTime[src]fn add_assign(&mut self, duration: StdDuration)[src]
fn add_assign(&mut self, duration: StdDuration)[src]Performs the += operation. Read more
impl Clone for PrimitiveDateTime[src]
impl Clone for PrimitiveDateTime[src]fn clone(&self) -> PrimitiveDateTime[src]
fn clone(&self) -> PrimitiveDateTime[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for PrimitiveDateTime[src]
impl Debug for PrimitiveDateTime[src]impl From<SystemTime> for PrimitiveDateTime[src]
impl From<SystemTime> for PrimitiveDateTime[src]fn from(system_time: SystemTime) -> Self[src]
fn from(system_time: SystemTime) -> Self[src]Performs the conversion.
impl Hash for PrimitiveDateTime[src]
impl Hash for PrimitiveDateTime[src]impl Ord for PrimitiveDateTime[src]
impl Ord for PrimitiveDateTime[src]impl PartialEq<PrimitiveDateTime> for PrimitiveDateTime[src]
impl PartialEq<PrimitiveDateTime> for PrimitiveDateTime[src]fn eq(&self, other: &PrimitiveDateTime) -> bool[src]
fn eq(&self, other: &PrimitiveDateTime) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &PrimitiveDateTime) -> bool[src]
fn ne(&self, other: &PrimitiveDateTime) -> bool[src]This method tests for !=.
impl PartialEq<SystemTime> for PrimitiveDateTime[src]
impl PartialEq<SystemTime> for PrimitiveDateTime[src]impl PartialOrd<PrimitiveDateTime> for PrimitiveDateTime[src]
impl PartialOrd<PrimitiveDateTime> for PrimitiveDateTime[src]fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &Self) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl PartialOrd<SystemTime> for PrimitiveDateTime[src]
impl PartialOrd<SystemTime> for PrimitiveDateTime[src]fn partial_cmp(&self, other: &SystemTime) -> Option<Ordering>[src]
fn partial_cmp(&self, other: &SystemTime) -> Option<Ordering>[src]This method returns an ordering between self and other values if one exists. Read more
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than (for self and other) and is used by the < operator. Read more
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Sub<Duration> for PrimitiveDateTime[src]
impl Sub<Duration> for PrimitiveDateTime[src]impl Sub<Duration> for PrimitiveDateTime[src]
impl Sub<Duration> for PrimitiveDateTime[src]impl Sub<PrimitiveDateTime> for PrimitiveDateTime[src]
impl Sub<PrimitiveDateTime> for PrimitiveDateTime[src]impl Sub<SystemTime> for PrimitiveDateTime[src]
impl Sub<SystemTime> for PrimitiveDateTime[src]impl SubAssign<Duration> for PrimitiveDateTime[src]
impl SubAssign<Duration> for PrimitiveDateTime[src]fn sub_assign(&mut self, duration: Duration)[src]
fn sub_assign(&mut self, duration: Duration)[src]Performs the -= operation. Read more
impl SubAssign<Duration> for PrimitiveDateTime[src]
impl SubAssign<Duration> for PrimitiveDateTime[src]fn sub_assign(&mut self, duration: StdDuration)[src]
fn sub_assign(&mut self, duration: StdDuration)[src]Performs the -= operation. Read more
impl Copy for PrimitiveDateTime[src]
impl Eq for PrimitiveDateTime[src]
impl StructuralEq for PrimitiveDateTime[src]
impl StructuralPartialEq for PrimitiveDateTime[src]
Auto Trait Implementations
impl RefUnwindSafe for PrimitiveDateTime
impl Send for PrimitiveDateTime
impl Sync for PrimitiveDateTime
impl Unpin for PrimitiveDateTime
impl UnwindSafe for PrimitiveDateTime
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more