pub struct PersonNamesFormatter { /* private fields */ }
Implementations§
source§impl PersonNamesFormatter
impl PersonNamesFormatter
pub fn try_new_unstable<P>(
provider: &P,
options: PersonNamesFormatterOptions,
) -> Result<PersonNamesFormatter, PersonNamesFormatterError>where
P: ?Sized + DataProvider<ScriptWithExtensionsPropertyV1Marker> + DataProvider<ScriptValueToShortNameV1Marker> + DataProvider<LikelySubtagsForLanguageV1Marker> + DataProvider<ParentsV1Marker>,
pub fn format_to_string<P, N>( &self, provider: &P, person_name: &N, ) -> Result<String, PersonNamesFormatterError>
Auto Trait Implementations§
impl Freeze for PersonNamesFormatter
impl RefUnwindSafe for PersonNamesFormatter
impl Send for PersonNamesFormatter
impl Sync for PersonNamesFormatter
impl Unpin for PersonNamesFormatter
impl UnwindSafe for PersonNamesFormatter
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