Sha256: 9a9671eddcf38a6faa10cb814949f8abc15d89f5e70f3ad6f684f1bc3ffe72ea
Contents?: true
Size: 612 Bytes
Versions: 3
Compression:
Stored size: 612 Bytes
Contents
// This file is part of ICU4X. For terms of use, please see the file // called LICENSE at the top level of the ICU4X source tree // (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ). use serde::Deserialize; #[derive(Deserialize)] pub struct SubtagData { pub valid: Vec<String>, pub invalid: Vec<String>, } #[derive(Deserialize)] pub struct Subtags { pub language: SubtagData, pub script: SubtagData, pub region: SubtagData, pub variant: SubtagData, } #[derive(Deserialize)] pub struct LocaleList { pub canonicalized: Vec<String>, pub casing: Vec<String>, }
Version data entries
3 entries across 3 versions & 1 rubygems