Struct icu::experimental::displaynames::RegionDisplayNames
source · pub struct RegionDisplayNames { /* private fields */ }
Expand description
Lookup of the locale-specific display names by region code.
§Example
use icu::experimental::displaynames::{
DisplayNamesOptions, RegionDisplayNames,
};
use icu::locale::{locale, subtags::region};
let locale = locale!("en-001").into();
let options: DisplayNamesOptions = Default::default();
let display_name = RegionDisplayNames::try_new(&locale, options)
.expect("Data should load successfully");
assert_eq!(display_name.of(region!("AE")), Some("United Arab Emirates"));
Implementations§
source§impl RegionDisplayNames
impl RegionDisplayNames
sourcepub fn try_new(
locale: &DataLocale,
options: DisplayNamesOptions,
) -> Result<RegionDisplayNames, DataError>
pub fn try_new( locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<RegionDisplayNames, DataError>
Creates a new RegionDisplayNames
from locale data and an options bag using compiled data.
✨ Enabled with the compiled_data
Cargo feature.
sourcepub fn try_new_with_any_provider(
provider: &(impl AnyProvider + ?Sized),
locale: &DataLocale,
options: DisplayNamesOptions,
) -> Result<RegionDisplayNames, DataError>
pub fn try_new_with_any_provider( provider: &(impl AnyProvider + ?Sized), locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<RegionDisplayNames, DataError>
A version of [Self :: try_new
] that uses custom data provided by an AnyProvider
.
sourcepub fn try_new_with_buffer_provider(
provider: &(impl BufferProvider + ?Sized),
locale: &DataLocale,
options: DisplayNamesOptions,
) -> Result<RegionDisplayNames, DataError>
pub fn try_new_with_buffer_provider( provider: &(impl BufferProvider + ?Sized), locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<RegionDisplayNames, DataError>
A version of [Self :: try_new
] that uses custom data provided by a BufferProvider
.
✨ Enabled with the serde
feature.
sourcepub fn try_new_unstable<D>(
provider: &D,
locale: &DataLocale,
options: DisplayNamesOptions,
) -> Result<RegionDisplayNames, DataError>
pub fn try_new_unstable<D>( provider: &D, locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<RegionDisplayNames, DataError>
A version of Self::try_new
that uses custom data provided by a DataProvider
.
⚠️ The bounds on provider may change over time, including in SemVer minor releases.
Trait Implementations§
source§impl Default for RegionDisplayNames
impl Default for RegionDisplayNames
source§fn default() -> RegionDisplayNames
fn default() -> RegionDisplayNames
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RegionDisplayNames
impl RefUnwindSafe for RegionDisplayNames
impl Send for RegionDisplayNames
impl Sync for RegionDisplayNames
impl Unpin for RegionDisplayNames
impl UnwindSafe for RegionDisplayNames
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more