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 TimeStrTokens in actual.

Args

  • pdt: The ParsedDateTime to fill.
  • actual: The queue of tokens representing the string you want use to fill pdt’s fields.