pub struct PersonNamesFormatterOptions {
pub target_locale: Locale,
pub order: FormattingOrder,
pub length: FormattingLength,
pub usage: FormattingUsage,
pub formality: FormattingFormality,
}
Expand description
Person name formatter options.
Fields§
§target_locale: Locale
TODO: the target locale should be maximized when passed into the formatter.
order: FormattingOrder
§length: FormattingLength
§usage: FormattingUsage
§formality: FormattingFormality
Implementations§
source§impl PersonNamesFormatterOptions
impl PersonNamesFormatterOptions
pub fn new( target_locale: Locale, order: FormattingOrder, length: FormattingLength, usage: FormattingUsage, formality: FormattingFormality, ) -> Self
Trait Implementations§
source§impl Clone for PersonNamesFormatterOptions
impl Clone for PersonNamesFormatterOptions
source§fn clone(&self) -> PersonNamesFormatterOptions
fn clone(&self) -> PersonNamesFormatterOptions
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 PersonNamesFormatterOptions
impl Debug for PersonNamesFormatterOptions
source§impl From<&PersonNamesFormatterOptions> for PersonNamesFormattingAttributesMask
impl From<&PersonNamesFormatterOptions> for PersonNamesFormattingAttributesMask
source§fn from(value: &PersonNamesFormatterOptions) -> Self
fn from(value: &PersonNamesFormatterOptions) -> Self
Converts to this type from the input type.
impl Eq for PersonNamesFormatterOptions
impl StructuralPartialEq for PersonNamesFormatterOptions
Auto Trait Implementations§
impl Freeze for PersonNamesFormatterOptions
impl RefUnwindSafe for PersonNamesFormatterOptions
impl Send for PersonNamesFormatterOptions
impl Sync for PersonNamesFormatterOptions
impl Unpin for PersonNamesFormatterOptions
impl UnwindSafe for PersonNamesFormatterOptions
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