pub enum DebArchitecture {
Show 24 variants
All,
Alpha,
Armel,
Armhf,
Arm64,
Hppa,
I386,
Amd64,
Ia64,
M68k,
Mips,
Mipsel,
Mips64el,
PowerPC,
Ppc64,
Ppc64el,
Riscv64,
S390x,
Sh4,
Sparc4,
X32,
HurdI386,
KFreebsdI386,
KFreebsdAmd64,
}
Expand description
Represents the various architectures Deb supports.
Variants§
All
For architecture independent packages, such as interpreted software or configuration files.
Alpha
Armel
Arm versions 5T and 6
Armhf
Armv7 (hard float)
Arm64
Armv8
Hppa
I386
32-bit x86
Amd64
64-bit x86_64
Ia64
M68k
Mips
Mipsel
Little-endian 32-bit
Mips64el
Little-endian 64-bit
PowerPC
Ppc64
Ppc64el
Riscv64
S390x
Sh4
Sparc4
X32
HurdI386
32-bit x86 for GNU/Hurd
KFreebsdI386
32-bit x86 for FreeBSD
KFreebsdAmd64
64-bit x86_64 for FreeBSD
Implementations§
Trait Implementations§
Source§impl Debug for DebArchitecture
impl Debug for DebArchitecture
Source§impl PartialEq for DebArchitecture
impl PartialEq for DebArchitecture
impl Eq for DebArchitecture
impl StructuralPartialEq for DebArchitecture
Auto Trait Implementations§
impl Freeze for DebArchitecture
impl RefUnwindSafe for DebArchitecture
impl Send for DebArchitecture
impl Sync for DebArchitecture
impl Unpin for DebArchitecture
impl UnwindSafe for DebArchitecture
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