#[repr(u32)]pub enum UNumberFormatPadPosition {
UNUM_PAD_BEFORE_PREFIX = 0,
UNUM_PAD_AFTER_PREFIX = 1,
UNUM_PAD_BEFORE_SUFFIX = 2,
UNUM_PAD_AFTER_SUFFIX = 3,
}
Variants§
UNUM_PAD_BEFORE_PREFIX = 0
UNUM_PAD_AFTER_PREFIX = 1
UNUM_PAD_BEFORE_SUFFIX = 2
UNUM_PAD_AFTER_SUFFIX = 3
Trait Implementations§
source§impl Clone for UNumberFormatPadPosition
impl Clone for UNumberFormatPadPosition
source§fn clone(&self) -> UNumberFormatPadPosition
fn clone(&self) -> UNumberFormatPadPosition
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 UNumberFormatPadPosition
impl Debug for UNumberFormatPadPosition
source§impl Hash for UNumberFormatPadPosition
impl Hash for UNumberFormatPadPosition
source§impl PartialEq for UNumberFormatPadPosition
impl PartialEq for UNumberFormatPadPosition
source§fn eq(&self, other: &UNumberFormatPadPosition) -> bool
fn eq(&self, other: &UNumberFormatPadPosition) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for UNumberFormatPadPosition
impl PartialOrd for UNumberFormatPadPosition
source§fn partial_cmp(&self, other: &UNumberFormatPadPosition) -> Option<Ordering>
fn partial_cmp(&self, other: &UNumberFormatPadPosition) -> 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 UNumberFormatPadPosition
impl Eq for UNumberFormatPadPosition
impl StructuralPartialEq for UNumberFormatPadPosition
Auto Trait Implementations§
impl RefUnwindSafe for UNumberFormatPadPosition
impl Send for UNumberFormatPadPosition
impl Sync for UNumberFormatPadPosition
impl Unpin for UNumberFormatPadPosition
impl UnwindSafe for UNumberFormatPadPosition
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