Struct dateparser::DateTimeUtc
source · Expand description
DateTimeUtc is an alias for chrono
’s DateTime<UTC>
. It implements std::str::FromStr
’s
from_str
method, and it makes str
’s parse
method to understand the accepted date formats
from this crate.
use dateparser::DateTimeUtc;
// parsed is DateTimeUTC and parsed.0 is chrono's DateTime<Utc>
match "May 02, 2021 15:51:31 UTC".parse::<DateTimeUtc>() {
Ok(parsed) => println!("PARSED into UTC datetime {:?}", parsed.0),
Err(err) => println!("ERROR from parsing datetime string: {}", err)
}
Tuple Fields§
§0: DateTime<Utc>
Trait Implementations§
source§impl Clone for DateTimeUtc
impl Clone for DateTimeUtc
source§fn clone(&self) -> DateTimeUtc
fn clone(&self) -> DateTimeUtc
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more