pub enum Os {
Linux,
Macos,
Windows,
Freestanding,
Wasi,
Unknown,
}Expand description
The operating system of a target.
Variants§
Linux
Macos
Windows
Freestanding
No OS — bare metal / freestanding.
Wasi
WebAssembly System Interface.
Unknown
Any OS we don’t model individually.
Trait Implementations§
impl Copy for Os
impl Eq for Os
impl StructuralPartialEq for Os
Auto Trait Implementations§
impl Freeze for Os
impl RefUnwindSafe for Os
impl Send for Os
impl Sync for Os
impl Unpin for Os
impl UnsafeUnpin for Os
impl UnwindSafe for Os
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