Struct icu::displaynames::options::DisplayNamesOptions
source · [−]#[non_exhaustive]pub struct DisplayNamesOptions {
pub style: Style,
pub fallback: Fallback,
pub language_display: LanguageDisplay,
}
Expand description
A bag of options defining how region codes will be translated by
DisplayNames
.
Example
use icu_displaynames::options::{DisplayNamesOptions, Style};
use icu_displaynames::displaynames::DisplayNames;
use icu_locid::locale;
let locale = locale!("en-001");
let mut options: DisplayNamesOptions = Default::default();
options.style = Style::Short;
let display_name = DisplayNames::try_new_region_unstable(
&icu_testdata::unstable(),
&locale.into(),
options,
)
.expect("Data should load successfully");
let region_code = "BA";
assert_eq!(display_name.of(®ion_code), 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: Style
The formatting style to use for display name, defaults to “long”.
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
sourceimpl Clone for DisplayNamesOptions
impl Clone for DisplayNamesOptions
sourcefn clone(&self) -> DisplayNamesOptions
fn clone(&self) -> DisplayNamesOptions
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for DisplayNamesOptions
impl Debug for DisplayNamesOptions
sourceimpl Default for DisplayNamesOptions
impl Default for DisplayNamesOptions
sourcefn default() -> DisplayNamesOptions
fn default() -> DisplayNamesOptions
Returns the “default value” for a type. Read more
sourceimpl PartialEq<DisplayNamesOptions> for DisplayNamesOptions
impl PartialEq<DisplayNamesOptions> for DisplayNamesOptions
sourcefn eq(&self, other: &DisplayNamesOptions) -> bool
fn eq(&self, other: &DisplayNamesOptions) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &DisplayNamesOptions) -> bool
fn ne(&self, other: &DisplayNamesOptions) -> bool
This method tests for !=
.
impl Eq for DisplayNamesOptions
impl StructuralEq for DisplayNamesOptions
impl StructuralPartialEq for DisplayNamesOptions
Auto Trait Implementations
impl RefUnwindSafe for DisplayNamesOptions
impl Send for DisplayNamesOptions
impl Sync for DisplayNamesOptions
impl Unpin for DisplayNamesOptions
impl UnwindSafe for DisplayNamesOptions
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more