Skip to content

Instantly share code, notes, and snippets.

@sby1ce
sby1ce / lib.rs
Created September 20, 2025 19:51
Incomplete RFC3339 parsing
use chrono::{format::Parsed, DateTime, NaiveDate, NaiveTime, Utc};
const INVALID: &str = "invalid";
const TOO_SHORT: &str = "too short";
struct Numbers {
year: i32,
month: u32,
day: u32,
hour: u32,