Crate strptime

Source
Expand description

A date and time parser independent of any Rust date and time library.

This library can be used to parse a date and time string into a RawDateTime, which the user can then convert into whatever final type is needed, without taking on a larger time library as a dependency.

Structs§

ParseError
Errors occurring during parsing.
Parser
A date and time parser object.
RawDate
A representation of a raw date.
RawDateTime
A parsed date and time.
RawTime
A representation of time.

Type Aliases§

ParseResult
A result returned from date and time parsing.