useserde::Deserialize;#[derive(Debug, Deserialize)]/// A holiday event in a specific state.
pubstructHolidayState{/// An ISO 3166-1 country or ISO 3166-2 country state code.
////// See also: <https://services.timeanddate.com/api/doc/v3/bi01.html#ISO3166>
pubiso: String,
/// Unique id of the state/subdivision.
pubid:i32,
/// Abbreviation of the state/subdivision.
pubabbrev: String,
/// Common name of the state/subdivision.
pubname: String,
/// Eventual exception if the holiday does not affect the whole state/subdivision.
pubexception:Option<String>,
}