pub enum AndroidArch {
_386,
Amd64,
Arm(Option<ArmVariant>),
Arm64(Option<Arm64Variant>),
}
Expand description
Android
architectures.
Variants§
_386
x86 / 32-bit x86
Amd64
x86_64 / 64-bit x86
Arm(Option<ArmVariant>)
32-bit ARM
Arm64(Option<Arm64Variant>)
AArch64 / 64-bit ARM
Implementations§
Trait Implementations§
Source§impl AsRef<str> for AndroidArch
impl AsRef<str> for AndroidArch
Source§impl Clone for AndroidArch
impl Clone for AndroidArch
Source§fn clone(&self) -> AndroidArch
fn clone(&self) -> AndroidArch
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 AndroidArch
impl Debug for AndroidArch
Source§impl<'_de> Deserialize<'_de> for AndroidArch
impl<'_de> Deserialize<'_de> for AndroidArch
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 AndroidArch
impl Display for AndroidArch
Source§impl From<AndroidArch> for Arch
impl From<AndroidArch> for Arch
Source§fn from(value: AndroidArch) -> Arch
fn from(value: AndroidArch) -> Arch
Converts to this type from the input type.
Source§impl FromStr for AndroidArch
impl FromStr for AndroidArch
Source§impl Hash for AndroidArch
impl Hash for AndroidArch
Source§impl PartialEq for AndroidArch
impl PartialEq for AndroidArch
Source§impl Serialize for AndroidArch
impl Serialize for AndroidArch
Source§impl TryFrom<&str> for AndroidArch
impl TryFrom<&str> for AndroidArch
Source§impl TryFrom<Arch> for AndroidArch
impl TryFrom<Arch> for AndroidArch
impl Copy for AndroidArch
impl Eq for AndroidArch
impl StructuralPartialEq for AndroidArch
Auto Trait Implementations§
impl Freeze for AndroidArch
impl RefUnwindSafe for AndroidArch
impl Send for AndroidArch
impl Sync for AndroidArch
impl Unpin for AndroidArch
impl UnwindSafe for AndroidArch
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.