#[repr(u64)]pub enum NSByteCountFormatterUnits {
UseDefault = 0,
UseBytes = 1,
UseKB = 2,
UseMB = 4,
UseGB = 8,
UseTB = 16,
UsePB = 32,
UseEB = 64,
UseZB = 128,
UseYBOrHigher = 65_280,
UseAll = 65_535,
}
Variants§
UseDefault = 0
UseBytes = 1
UseKB = 2
UseMB = 4
UseGB = 8
UseTB = 16
UsePB = 32
UseEB = 64
UseZB = 128
UseYBOrHigher = 65_280
UseAll = 65_535
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NSByteCountFormatterUnits
impl RefUnwindSafe for NSByteCountFormatterUnits
impl Send for NSByteCountFormatterUnits
impl Sync for NSByteCountFormatterUnits
impl Unpin for NSByteCountFormatterUnits
impl UnwindSafe for NSByteCountFormatterUnits
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