#[repr(u32)]pub enum UNumberSignDisplay {
UNUM_SIGN_AUTO = 0,
UNUM_SIGN_ALWAYS = 1,
UNUM_SIGN_NEVER = 2,
UNUM_SIGN_ACCOUNTING = 3,
UNUM_SIGN_ACCOUNTING_ALWAYS = 4,
UNUM_SIGN_EXCEPT_ZERO = 5,
UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6,
UNUM_SIGN_NEGATIVE = 7,
UNUM_SIGN_ACCOUNTING_NEGATIVE = 8,
UNUM_SIGN_COUNT = 9,
}Variants§
UNUM_SIGN_AUTO = 0
UNUM_SIGN_ALWAYS = 1
UNUM_SIGN_NEVER = 2
UNUM_SIGN_ACCOUNTING = 3
UNUM_SIGN_ACCOUNTING_ALWAYS = 4
UNUM_SIGN_EXCEPT_ZERO = 5
UNUM_SIGN_ACCOUNTING_EXCEPT_ZERO = 6
UNUM_SIGN_NEGATIVE = 7
UNUM_SIGN_ACCOUNTING_NEGATIVE = 8
UNUM_SIGN_COUNT = 9
Trait Implementations§
Source§impl Clone for UNumberSignDisplay
impl Clone for UNumberSignDisplay
Source§fn clone(&self) -> UNumberSignDisplay
fn clone(&self) -> UNumberSignDisplay
Returns a duplicate 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 UNumberSignDisplay
impl Debug for UNumberSignDisplay
Source§impl Hash for UNumberSignDisplay
impl Hash for UNumberSignDisplay
Source§impl PartialEq for UNumberSignDisplay
impl PartialEq for UNumberSignDisplay
Source§impl PartialOrd for UNumberSignDisplay
impl PartialOrd for UNumberSignDisplay
impl Copy for UNumberSignDisplay
impl Eq for UNumberSignDisplay
impl StructuralPartialEq for UNumberSignDisplay
Auto Trait Implementations§
impl Freeze for UNumberSignDisplay
impl RefUnwindSafe for UNumberSignDisplay
impl Send for UNumberSignDisplay
impl Sync for UNumberSignDisplay
impl Unpin for UNumberSignDisplay
impl UnwindSafe for UNumberSignDisplay
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