[−][src]Struct time::Tm
Holds a calendar date and time broken down into its components (year, month, day, and so on), also called a broken-down time value.
Fields
tm_sec: i32
Seconds after the minute - [0, 60]
tm_min: i32
Minutes after the hour - [0, 59]
tm_hour: i32
Hours after midnight - [0, 23]
tm_mday: i32
Day of the month - [1, 31]
tm_mon: i32
Months since January - [0, 11]
tm_year: i32
Years since 1900
tm_wday: i32
Days since Sunday - [0, 6]. 0 = Sunday, 1 = Monday, ..., 6 = Saturday.
tm_yday: i32
Days since January 1 - [0, 365]
tm_isdst: i32
Daylight Saving Time flag.
This value is positive if Daylight Saving Time is in effect, zero if Daylight Saving Time is not in effect, and negative if this information is not available.
tm_utcoff: i32
Identifies the time zone that was used to compute this broken-down time
value, including any adjustment for Daylight Saving Time. This is the
number of seconds east of UTC. For example, for U.S. Pacific Daylight
Time, the value is -7*60*60 = -25200
.
tm_nsec: i32
Nanoseconds after the second - [0, 109 - 1]
Methods
impl Tm
[src]
pub fn to_timespec(&self) -> Timespec
[src]
Convert time to the seconds from January 1, 1970
pub fn to_local(&self) -> Tm
[src]
Convert time to the local timezone
pub fn to_utc(&self) -> Tm
[src]
Convert time to the UTC
pub fn ctime(&self) -> TmFmt
[src]
Returns a TmFmt that outputs according to the asctime
format in ISO
C, in the local timezone.
Example: "Thu Jan 1 00:00:00 1970"
pub fn asctime(&self) -> TmFmt
[src]
Returns a TmFmt that outputs according to the asctime
format in ISO
C.
Example: "Thu Jan 1 00:00:00 1970"
pub fn strftime<'a>(&'a self, format: &'a str) -> Result<TmFmt<'a>, ParseError>
[src]
Formats the time according to the format string.
pub fn rfc822(&self) -> TmFmt
[src]
Returns a TmFmt that outputs according to RFC 822.
local: "Thu, 22 Mar 2012 07:53:18 PST" utc: "Thu, 22 Mar 2012 14:53:18 GMT"
pub fn rfc822z(&self) -> TmFmt
[src]
Returns a TmFmt that outputs according to RFC 822 with Zulu time.
local: "Thu, 22 Mar 2012 07:53:18 -0700" utc: "Thu, 22 Mar 2012 14:53:18 -0000"
pub fn rfc3339<'a>(&'a self) -> TmFmt
[src]
Returns a TmFmt that outputs according to RFC 3339. RFC 3339 is compatible with ISO 8601.
local: "2012-02-22T07:53:18-07:00" utc: "2012-02-22T14:53:18Z"
Trait Implementations
impl PartialEq<Tm> for Tm
[src]
impl Ord for Tm
[src]
fn cmp(&self, other: &Tm) -> Ordering
[src]
fn max(self, other: Self) -> Self
1.21.0[src]
Compares and returns the maximum of two values. Read more
fn min(self, other: Self) -> Self
1.21.0[src]
Compares and returns the minimum of two values. Read more
impl Clone for Tm
[src]
fn clone(&self) -> Tm
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Eq for Tm
[src]
impl Copy for Tm
[src]
impl PartialOrd<Tm> for Tm
[src]
fn partial_cmp(&self, other: &Tm) -> Option<Ordering>
[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool
1.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) -> bool
1.0.0[src]
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
#[must_use]
fn gt(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
#[must_use]
fn ge(&self, other: &Rhs) -> bool
1.0.0[src]
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl Debug for Tm
[src]
impl Hash for Tm
[src]
fn hash<__H: Hasher>(&self, state: &mut __H)
[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher,
1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher
]. Read more
impl Add<Duration> for Tm
[src]
type Output = Tm
The resulting type after applying the +
operator.
fn add(self, other: Duration) -> Tm
[src]
The resulting Tm is in UTC.
impl Sub<Duration> for Tm
[src]
type Output = Tm
The resulting type after applying the -
operator.
fn sub(self, other: Duration) -> Tm
[src]
The resulting Tm is in UTC.
impl Sub<Tm> for Tm
[src]
Auto Trait Implementations
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,