Struct locale_config::Locale [] [src]

pub struct Locale { /* fields omitted */ }

Locale configuration.

Users may accept several languages in some order of preference and may want to use rules from different culture for some particular aspect of the program behaviour, and operating systems allow them to specify this (to various extent).

The Locale objects represent the user configuration. They contain:

  • The primary LanguageRange.
  • Optional category-specific overrides.
  • Optional fallbacks in case data (usually translations) for the primary language are not available.

The set of categories is open-ended. The locale crate uses five well-known categories messages, numeric, time, collate and monetary, but some systems define additional ones (GNU Linux has additionally paper, name, address, telephone and measurement) and these are provided in the user default Locale and other libraries can use them.

Locale is represented by a ,-separated sequence of tags in LanguageRange syntax, where all except the first one may be preceded by category name and = sign.

The first tag indicates the default locale, the tags prefixed by category names indicate overrides for those categories and the remaining tags indicate fallbacks.

Note that a syntactically valid value of HTTP Accept-Language header is a valid Locale. Not the other way around though due to the presence of category selectors.

Methods

impl Locale
[src]

Obtain the user default locale.

This is the locale indicated by operating environment.

Obtain the global default locale.

The global default for current() locale. Defaults to user_default().

Change the global default locale.

Setting this overrides the default for new threads and threads that didn't do any locale-aware operation yet.

Obtain the current locale of current thread.

Defaults to global_default() on first use in each thread.

Change the current locale of current thread.

Construct locale from the string representation.

Locale is represented by a ,-separated sequence of tags in LanguageRange syntax, where all except the first one may be preceded by category name and = sign.

The first tag indicates the default locale, the tags prefixed by category names indicate overrides for those categories and the remaining tags indicate fallbacks.

Construct invariant locale.

Invariant locale is represented simply with empty string.

Append fallback language tag.

Adds fallback to the end of the list.

Append category override.

Appending new override for a category that already has one will not replace the existing override. This might change in future.

Iterate over LanguageRanges in this Locale.

Returns tuples of optional category (as string) and corresponding LanguageRange. All tags in the list are returned, in order of preference.

The iterator is guaranteed to return at least one value.

Iterate over LanguageRanges in this Locale applicable to given category.

Returns LanguageRanges in the Locale that are applicable to provided category. The tags are returned in order of preference, which means the category-specific ones first and then the generic ones.

The iterator is guaranteed to return at least one value.

Trait Implementations

impl Clone for Locale
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Locale
[src]

Formats the value using the given formatter.

impl Eq for Locale
[src]

impl Hash for Locale
[src]

Feeds this value into the state given, updating the hasher as necessary.

Feeds a slice of this type into the state provided.

impl PartialEq for Locale
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl AsRef<str> for Locale
[src]

Locale is specified by a string tag. This is the way to access it.

Performs the conversion.

impl<'a> From<LanguageRange<'a>> for Locale
[src]

Performs the conversion.

impl Display for Locale
[src]

Formats the value using the given formatter.