[−][src]Enum heim_host::Arch
target_arch: Target CPU architecture
Variants
aarch64: ARMv8 64-bit architecture
arm: 32-bit ARM architecture
asm: asm.js output
mips: 32-bit MIPS CPU architecture
mips64: 32-bit MIPS CPU architecture
msp430: 16-bit MSP430 microcontrollers
powerpc: 32-bit POWERPC platform
powerpc64: 64-bit POWERPC platform
riscv: RISC-V CPU architecture
s390x: 64-bit IBM z/Architecture
sparc: 32-bit SPARC CPU architecture
sparc64: 64-bit SPARC CPU architecture
thumbv6: 16-bit ARM CPU architecture subset
thumbv7: 16-bit ARM CPU architecture subset
wasm32: Web Assembly (32-bit)
x86: Generic x86 CPU architecture
x86_64: "AMD64" CPU architecture
Unknown CPU architecture
Methods
impl Arch[src]
pub fn as_str(self) -> &'static str[src]
String representing this target architecture which matches cfg(target_arch)
Trait Implementations
impl PartialOrd<Arch> for Arch[src]
fn partial_cmp(&self, other: &Arch) -> Option<Ordering>[src]
#[must_use]
fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]
fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl Eq for Arch[src]
impl Clone for Arch[src]
impl Copy for Arch[src]
impl StructuralPartialEq for Arch[src]
impl Ord for Arch[src]
fn cmp(&self, other: &Arch) -> Ordering[src]
fn max(self, other: Self) -> Self1.21.0[src]
fn min(self, other: Self) -> Self1.21.0[src]
fn clamp(self, min: Self, max: Self) -> Self[src]
impl PartialEq<Arch> for Arch[src]
impl FromStr for Arch[src]
type Err = Error
The associated error which can be returned from parsing.
fn from_str(arch_name: &str) -> Result<Arch, <Arch as FromStr>::Err>[src]
Create a new Arch from the given string
impl StructuralEq for Arch[src]
impl Hash for Arch[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl Debug for Arch[src]
Auto Trait Implementations
impl Send for Arch
impl Sync for Arch
impl Unpin for Arch
impl UnwindSafe for Arch
impl RefUnwindSafe for Arch
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self