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