#[repr(i32)]pub enum CFNumberFormatterStyle {
NoStyle = 0,
Decimal = 1,
Currency = 2,
Percent = 3,
Scientific = 4,
SpellOut = 5,
}Expand description
CFNumberFormatterStyle values mirrored from Core Foundation.
Variants§
Trait Implementations§
Source§impl Clone for CFNumberFormatterStyle
impl Clone for CFNumberFormatterStyle
Source§fn clone(&self) -> CFNumberFormatterStyle
fn clone(&self) -> CFNumberFormatterStyle
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CFNumberFormatterStyle
impl Debug for CFNumberFormatterStyle
Source§impl Hash for CFNumberFormatterStyle
impl Hash for CFNumberFormatterStyle
Source§impl PartialEq for CFNumberFormatterStyle
impl PartialEq for CFNumberFormatterStyle
Source§fn eq(&self, other: &CFNumberFormatterStyle) -> bool
fn eq(&self, other: &CFNumberFormatterStyle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for CFNumberFormatterStyle
impl Eq for CFNumberFormatterStyle
impl StructuralPartialEq for CFNumberFormatterStyle
Auto Trait Implementations§
impl Freeze for CFNumberFormatterStyle
impl RefUnwindSafe for CFNumberFormatterStyle
impl Send for CFNumberFormatterStyle
impl Sync for CFNumberFormatterStyle
impl Unpin for CFNumberFormatterStyle
impl UnsafeUnpin for CFNumberFormatterStyle
impl UnwindSafe for CFNumberFormatterStyle
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