#[repr(u64)]pub enum NSNumberFormatterPadPosition {
BeforePrefix = 0,
AfterPrefix = 1,
BeforeSuffix = 2,
AfterSuffix = 3,
}Expand description
These constants are used to specify how numbers should be padded. These constants are used by the paddingPosition property.
Variants§
BeforePrefix = 0
Specifies that the padding should occur before the prefix.
AfterPrefix = 1
Specifies that the padding should occur after the prefix.
BeforeSuffix = 2
Specifies that the padding should occur before the suffix.
AfterSuffix = 3
Specifies that the padding should occur after the suffix.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NSNumberFormatterPadPosition
impl RefUnwindSafe for NSNumberFormatterPadPosition
impl Send for NSNumberFormatterPadPosition
impl Sync for NSNumberFormatterPadPosition
impl Unpin for NSNumberFormatterPadPosition
impl UnwindSafe for NSNumberFormatterPadPosition
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