#[repr(u32)]pub enum UNumberFormatTextAttribute {
UNUM_POSITIVE_PREFIX = 0,
UNUM_POSITIVE_SUFFIX = 1,
UNUM_NEGATIVE_PREFIX = 2,
UNUM_NEGATIVE_SUFFIX = 3,
UNUM_PADDING_CHARACTER = 4,
UNUM_CURRENCY_CODE = 5,
UNUM_DEFAULT_RULESET = 6,
UNUM_PUBLIC_RULESETS = 7,
}
Variants§
UNUM_POSITIVE_PREFIX = 0
UNUM_POSITIVE_SUFFIX = 1
UNUM_NEGATIVE_PREFIX = 2
UNUM_NEGATIVE_SUFFIX = 3
UNUM_PADDING_CHARACTER = 4
UNUM_CURRENCY_CODE = 5
UNUM_DEFAULT_RULESET = 6
UNUM_PUBLIC_RULESETS = 7
Trait Implementations§
source§impl Clone for UNumberFormatTextAttribute
impl Clone for UNumberFormatTextAttribute
source§fn clone(&self) -> UNumberFormatTextAttribute
fn clone(&self) -> UNumberFormatTextAttribute
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 UNumberFormatTextAttribute
impl Debug for UNumberFormatTextAttribute
source§impl Hash for UNumberFormatTextAttribute
impl Hash for UNumberFormatTextAttribute
source§impl PartialEq for UNumberFormatTextAttribute
impl PartialEq for UNumberFormatTextAttribute
source§fn eq(&self, other: &UNumberFormatTextAttribute) -> bool
fn eq(&self, other: &UNumberFormatTextAttribute) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for UNumberFormatTextAttribute
impl PartialOrd for UNumberFormatTextAttribute
source§fn partial_cmp(&self, other: &UNumberFormatTextAttribute) -> Option<Ordering>
fn partial_cmp(&self, other: &UNumberFormatTextAttribute) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for
self
and other
) and is used by the <=
operator. Read moreimpl Copy for UNumberFormatTextAttribute
impl Eq for UNumberFormatTextAttribute
impl StructuralPartialEq for UNumberFormatTextAttribute
Auto Trait Implementations§
impl RefUnwindSafe for UNumberFormatTextAttribute
impl Send for UNumberFormatTextAttribute
impl Sync for UNumberFormatTextAttribute
impl Unpin for UNumberFormatTextAttribute
impl UnwindSafe for UNumberFormatTextAttribute
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