Function mz_repr::adt::datetime::fill_pdt_time
source · fn fill_pdt_time(
pdt: &mut ParsedDateTime,
actual: &mut VecDeque<TimeStrToken>,
) -> Result<(), String>
Expand description
Fills the hour, minute, and second fields of pdt
using the TimeStrToken
s in
actual
.
§Args
pdt
: The ParsedDateTime to fill.actual
: The queue of tokens representing the string you want use to fillpdt
’s fields.