Struct icu::experimental::displaynames::LanguageDisplayNames
source · pub struct LanguageDisplayNames { /* private fields */ }
Expand description
Lookup of the locale-specific display names by language code.
§Example
use icu::experimental::displaynames::{
DisplayNamesOptions, LanguageDisplayNames,
};
use icu::locale::{locale, subtags::language};
let locale = locale!("en-001").into();
let options: DisplayNamesOptions = Default::default();
let display_name = LanguageDisplayNames::try_new(&locale, options)
.expect("Data should load successfully");
assert_eq!(display_name.of(language!("de")), Some("German"));
Implementations§
source§impl LanguageDisplayNames
impl LanguageDisplayNames
sourcepub fn try_new(
locale: &DataLocale,
options: DisplayNamesOptions,
) -> Result<LanguageDisplayNames, DataError>
pub fn try_new( locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<LanguageDisplayNames, DataError>
Creates a new LanguageDisplayNames
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<LanguageDisplayNames, DataError>
pub fn try_new_with_any_provider( provider: &(impl AnyProvider + ?Sized), locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<LanguageDisplayNames, 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<LanguageDisplayNames, DataError>
pub fn try_new_with_buffer_provider( provider: &(impl BufferProvider + ?Sized), locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<LanguageDisplayNames, 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<LanguageDisplayNames, DataError>
pub fn try_new_unstable<D>( provider: &D, locale: &DataLocale, options: DisplayNamesOptions, ) -> Result<LanguageDisplayNames, 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 LanguageDisplayNames
impl Default for LanguageDisplayNames
source§fn default() -> LanguageDisplayNames
fn default() -> LanguageDisplayNames
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LanguageDisplayNames
impl RefUnwindSafe for LanguageDisplayNames
impl Send for LanguageDisplayNames
impl Sync for LanguageDisplayNames
impl Unpin for LanguageDisplayNames
impl UnwindSafe for LanguageDisplayNames
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