#[non_exhaustive]pub struct DisplayNamesOptions {
pub style: Option<Style>,
pub fallback: Fallback,
pub language_display: LanguageDisplay,
}Expand description
A bag of options defining how region or language codes will be translated.
§Example
use icu::experimental::displaynames::{
DisplayNamesOptions, RegionDisplayNames, Style,
};
use icu::locale::{locale, subtags::region};
let locale = locale!("en-001");
let mut options: DisplayNamesOptions = Default::default();
options.style = Some(Style::Short);
let display_name = RegionDisplayNames::try_new(locale.into(), options)
.expect("Data should load successfully");
// Full name would be "Bosnia & Herzegovina"
assert_eq!(display_name.of(region!("BA")), Some("Bosnia"));Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.style: Option<Style>The optional formatting style to use for display name.
fallback: FallbackThe fallback return when the system does not have the requested display name, defaults to “code”.
language_display: LanguageDisplayThe language display kind, defaults to “dialect”.
Trait Implementations§
Source§impl Clone for DisplayNamesOptions
impl Clone for DisplayNamesOptions
Source§fn clone(&self) -> DisplayNamesOptions
fn clone(&self) -> DisplayNamesOptions
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for DisplayNamesOptions
impl Debug for DisplayNamesOptions
Source§impl Default for DisplayNamesOptions
impl Default for DisplayNamesOptions
Source§fn default() -> DisplayNamesOptions
fn default() -> DisplayNamesOptions
Returns the “default value” for a type. Read more
Source§impl PartialEq for DisplayNamesOptions
impl PartialEq for DisplayNamesOptions
impl Copy for DisplayNamesOptions
impl Eq for DisplayNamesOptions
impl StructuralPartialEq for DisplayNamesOptions
Auto Trait Implementations§
impl Freeze for DisplayNamesOptions
impl RefUnwindSafe for DisplayNamesOptions
impl Send for DisplayNamesOptions
impl Sync for DisplayNamesOptions
impl Unpin for DisplayNamesOptions
impl UnwindSafe for DisplayNamesOptions
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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