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