pub enum Architecture {
X86,
X64,
ARM,
AARCH64,
UNKNOWN,
}Expand description
Supported CPU architectures.
Variants§
Implementations§
Source§impl Architecture
impl Architecture
Sourcepub fn get_simple_name(&self) -> SystemResult<&'static str>
pub fn get_simple_name(&self) -> SystemResult<&'static str>
Returns the canonical architecture name ("x86", "x64", "arm", "aarch64").
Sourcepub fn get_vanilla_arch(&self) -> SystemResult<&'static str>
pub fn get_vanilla_arch(&self) -> SystemResult<&'static str>
Returns the architecture suffix Mojang appends to native classifier
names ("" for x64, "-x86", "-arm", "-arm64").
Sourcepub fn get_arch_bits(&self) -> SystemResult<&'static str>
pub fn get_arch_bits(&self) -> SystemResult<&'static str>
Returns "32" or "64" — used to resolve the ${arch} placeholder
in Mojang’s library native classifier names.
Sourcepub fn get_zulu_arch(&self) -> SystemResult<&'static str>
pub fn get_zulu_arch(&self) -> SystemResult<&'static str>
Returns the architecture name as used by the Azul Zulu API
("i686", "x64", "arm", "aarch64").
Trait Implementations§
Source§impl Clone for Architecture
impl Clone for Architecture
Source§fn clone(&self) -> Architecture
fn clone(&self) -> Architecture
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 Architecture
impl Debug for Architecture
Source§impl<'de> Deserialize<'de> for Architecture
impl<'de> Deserialize<'de> for Architecture
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for Architecture
impl Display for Architecture
Source§impl Hash for Architecture
impl Hash for Architecture
Source§impl PartialEq for Architecture
impl PartialEq for Architecture
Source§fn eq(&self, other: &Architecture) -> bool
fn eq(&self, other: &Architecture) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for Architecture
impl StructuralPartialEq for Architecture
Auto Trait Implementations§
impl Freeze for Architecture
impl RefUnwindSafe for Architecture
impl Send for Architecture
impl Sync for Architecture
impl Unpin for Architecture
impl UnsafeUnpin for Architecture
impl UnwindSafe for Architecture
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.