pub trait ToUtcDateTime {
// Required method
fn to_utc_datetime(self) -> Option<UtcDateTime>;
}
Expand description
The trait helping convert to a UtcDateTime
.
Required Methods§
Sourcefn to_utc_datetime(self) -> Option<UtcDateTime>
fn to_utc_datetime(self) -> Option<UtcDateTime>
Converts to a UtcDateTime
.
Implementations on Foreign Types§
Source§impl ToUtcDateTime for i64
impl ToUtcDateTime for i64
Source§fn to_utc_datetime(self) -> Option<UtcDateTime>
fn to_utc_datetime(self) -> Option<UtcDateTime>
Converts a UNIX timestamp to a UtcDateTime
.