#[repr(u8)]pub enum OperatingSystem {
Show 15 variants
Fat = 0,
Amiga = 1,
Vms = 2,
Unix = 3,
VmCms = 4,
Atari = 5,
Hpfs = 6,
Macintosh = 7,
ZSystem = 8,
Cpm = 9,
Tops = 10,
Ntfs = 11,
Qdos = 12,
Acorn = 13,
Unknown = 255,
}
Variants§
Fat = 0
Amiga = 1
Vms = 2
Unix = 3
VmCms = 4
Atari = 5
Hpfs = 6
Macintosh = 7
ZSystem = 8
Cpm = 9
Tops = 10
Ntfs = 11
Qdos = 12
Acorn = 13
Unknown = 255
Trait Implementations§
Source§impl Clone for OperatingSystem
impl Clone for OperatingSystem
Source§fn clone(&self) -> OperatingSystem
fn clone(&self) -> OperatingSystem
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 OperatingSystem
impl Debug for OperatingSystem
Source§impl Default for OperatingSystem
impl Default for OperatingSystem
Source§impl PartialEq for OperatingSystem
impl PartialEq for OperatingSystem
Source§impl TryFrom<u8> for OperatingSystem
impl TryFrom<u8> for OperatingSystem
impl Copy for OperatingSystem
impl StructuralPartialEq for OperatingSystem
Auto Trait Implementations§
impl Freeze for OperatingSystem
impl RefUnwindSafe for OperatingSystem
impl Send for OperatingSystem
impl Sync for OperatingSystem
impl Unpin for OperatingSystem
impl UnwindSafe for OperatingSystem
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