Enum wasmer_compiler::OperatingSystem
source · [−]#[non_exhaustive]
pub enum OperatingSystem {
Show 32 variants
Unknown,
AmdHsa,
Bitrig,
Cloudabi,
Cuda,
Darwin,
Dragonfly,
Emscripten,
Espidf,
Freebsd,
Fuchsia,
Haiku,
Hermit,
Horizon,
Illumos,
Ios,
L4re,
Linux,
MacOSX {
major: u16,
minor: u16,
patch: u16,
},
Nebulet,
Netbsd,
None_,
Openbsd,
Psp,
Redox,
Solaris,
SolidAsp3,
Tvos,
Uefi,
VxWorks,
Wasi,
Windows,
}
Expand description
The “operating system” field, which sometimes implies an environment, and sometimes isn’t an actual operating system.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
Unknown
AmdHsa
Bitrig
Cloudabi
Cuda
Darwin
Dragonfly
Emscripten
Espidf
Freebsd
Fuchsia
Haiku
Hermit
Horizon
Illumos
Ios
L4re
Linux
MacOSX
Nebulet
Netbsd
None_
Openbsd
Psp
Redox
Solaris
SolidAsp3
Tvos
Uefi
VxWorks
Wasi
Windows
Implementations
sourceimpl OperatingSystem
impl OperatingSystem
sourcepub const fn host() -> OperatingSystem
pub const fn host() -> OperatingSystem
Return the operating system for the current host.
Trait Implementations
sourceimpl Clone for OperatingSystem
impl Clone for OperatingSystem
sourcepub fn clone(&self) -> OperatingSystem
pub fn clone(&self) -> OperatingSystem
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for OperatingSystem
impl Debug for OperatingSystem
sourceimpl Display for OperatingSystem
impl Display for OperatingSystem
sourceimpl FromStr for OperatingSystem
impl FromStr for OperatingSystem
sourceimpl Hash for OperatingSystem
impl Hash for OperatingSystem
sourceimpl PartialEq<OperatingSystem> for OperatingSystem
impl PartialEq<OperatingSystem> for OperatingSystem
sourcepub fn eq(&self, other: &OperatingSystem) -> bool
pub fn eq(&self, other: &OperatingSystem) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcepub fn ne(&self, other: &OperatingSystem) -> bool
pub fn ne(&self, other: &OperatingSystem) -> bool
This method tests for !=
.
impl Copy for OperatingSystem
impl Eq for OperatingSystem
impl StructuralEq for OperatingSystem
impl StructuralPartialEq for OperatingSystem
Auto Trait Implementations
impl RefUnwindSafe for OperatingSystem
impl Send for OperatingSystem
impl Sync for OperatingSystem
impl Unpin for OperatingSystem
impl UnwindSafe for OperatingSystem
Blanket Implementations
sourceimpl<T> ArchivePointee for T
impl<T> ArchivePointee for T
type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
sourcepub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
pub fn pointer_metadata(
&<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for F where
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcepub fn equivalent(&self, key: &K) -> bool
pub fn equivalent(&self, key: &K) -> bool
Compare self to key
and return true
if they are equal.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more