[][src]Struct icu::locid::Locale

pub struct Locale {
    pub language: Language,
    pub script: Option<Script>,
    pub region: Option<Region>,
    pub variants: Variants,
    pub extensions: Extensions,
}

Locale is a core struct representing a Unicode Locale Identifier.

A locale is made of two parts:

  • Unicode Language Identifier
  • A set of Unicode Extensions

Locale exposes all of the same fields and methods as LanguageIdentifier, and on top of that is able to parse, manipulate and serialize unicode extension fields.

Examples

use icu_locid::Locale;
use icu_locid::extensions::unicode::{Key, Value};

let loc: Locale = "en-US-u-ca-buddhist".parse()
    .expect("Failed to parse.");

assert_eq!(loc.language, "en");
assert_eq!(loc.script, None);
assert_eq!(loc.region, Some("US".parse().unwrap()));
assert_eq!(loc.variants.len(), 0);
assert_eq!(loc, "en-US-u-ca-buddhist");

let key: Key = "ca".parse().expect("Parsing key failed.");
let value: Value = "buddhist".parse().expect("Parsing value failed.");
assert_eq!(loc.extensions.unicode.keywords.get(key),
    Some(&value));

Parsing

Unicode recognizes three levels of standard conformance for a locale:

  • well-formed - syntactically correct
  • valid - well-formed and only uses registered language subtags, extensions, keywords, types...
  • canonical - valid and no deprecated codes or structure.

At the moment parsing normalizes a well-formed locale identifier converting _ separators to - and adjusting casing to conform to the Unicode standard.

Any bogus subtags will cause the parsing to fail with an error. No subtag validation is performed.

Examples

use icu_locid::Locale;

let loc: Locale = "eN_latn_Us-Valencia_u-hC-H12".parse()
    .expect("Failed to parse.");

assert_eq!(loc.language, "en");
assert_eq!(loc.script, Some("Latn".parse().unwrap()));
assert_eq!(loc.region, Some("US".parse().unwrap()));
assert_eq!(loc.variants.get(0).unwrap(), "valencia");

Fields

language: Language

Language subtag of the Locale

script: Option<Script>

Script subtag of the Locale

region: Option<Region>

Region subtag of the Locale

variants: Variants

Variant subtags of the Locale

extensions: Extensions

Implementations

impl Locale[src]

pub fn from_bytes(v: &[u8]) -> Result<Locale, ParserError>[src]

A constructor which takes a utf8 slice, parses it and produces a well-formed Locale.

Examples

use icu_locid::Locale;

let loc = Locale::from_bytes("en-US-u-hc-h12".as_bytes())
    .expect("Parsing failed.");

assert_eq!(loc.to_string(), "en-US-u-hc-h12");

pub fn canonicalize<S>(input: S) -> Result<String, ParserError> where
    S: AsRef<[u8]>, 
[src]

This is a best-effort operation that performs all available levels of canonicalization.

At the moment the operation will normalize casing and the separator, but in the future it may also validate and update from deprecated subtags to canonical ones.

Examples

use icu_locid::Locale;

assert_eq!(Locale::canonicalize("pL_latn_pl-U-HC-H12"), Ok("pl-Latn-PL-u-hc-h12".to_string()));

Trait Implementations

impl Clone for Locale[src]

impl Debug for Locale[src]

impl Default for Locale[src]

impl Display for Locale[src]

impl Eq for Locale[src]

impl From<LanguageIdentifier> for Locale[src]

impl From<Locale> for LanguageIdentifier[src]

impl FromStr for Locale[src]

type Err = ParserError

The associated error which can be returned from parsing.

impl Hash for Locale[src]

impl Ord for Locale[src]

impl<'_> PartialEq<&'_ str> for Locale[src]

impl PartialEq<Locale> for Locale[src]

impl PartialEq<str> for Locale[src]

impl PartialOrd<Locale> for Locale[src]

impl StructuralEq for Locale[src]

impl StructuralPartialEq for Locale[src]

Auto Trait Implementations

impl RefUnwindSafe for Locale

impl Send for Locale

impl Sync for Locale

impl Unpin for Locale

impl UnwindSafe for Locale

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Downcast for T where
    T: Any

impl<T> DowncastSync for T where
    T: Send + Sync + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.