Struct icu::experimental::displaynames::DisplayNamesOptions
source · #[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: Fallback
The fallback return when the system does not have the requested display name, defaults to “code”.
language_display: LanguageDisplay
The 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 copy 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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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