Struct icu::experimental::relativetime::options::RelativeTimeFormatterOptions
source · pub struct RelativeTimeFormatterOptions {
pub numeric: Numeric,
}
Expand description
A bag of options for defining how to format time using
RelativeTimeFormatter
.
Fields§
§numeric: Numeric
Whether to always use numeric formatting for time.
Trait Implementations§
source§impl Clone for RelativeTimeFormatterOptions
impl Clone for RelativeTimeFormatterOptions
source§fn clone(&self) -> RelativeTimeFormatterOptions
fn clone(&self) -> RelativeTimeFormatterOptions
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 RelativeTimeFormatterOptions
impl Debug for RelativeTimeFormatterOptions
source§impl Default for RelativeTimeFormatterOptions
impl Default for RelativeTimeFormatterOptions
source§fn default() -> RelativeTimeFormatterOptions
fn default() -> RelativeTimeFormatterOptions
Returns the “default value” for a type. Read more
source§impl PartialEq for RelativeTimeFormatterOptions
impl PartialEq for RelativeTimeFormatterOptions
source§fn eq(&self, other: &RelativeTimeFormatterOptions) -> bool
fn eq(&self, other: &RelativeTimeFormatterOptions) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for RelativeTimeFormatterOptions
impl Eq for RelativeTimeFormatterOptions
impl StructuralPartialEq for RelativeTimeFormatterOptions
Auto Trait Implementations§
impl Freeze for RelativeTimeFormatterOptions
impl RefUnwindSafe for RelativeTimeFormatterOptions
impl Send for RelativeTimeFormatterOptions
impl Sync for RelativeTimeFormatterOptions
impl Unpin for RelativeTimeFormatterOptions
impl UnwindSafe for RelativeTimeFormatterOptions
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