pub enum WixArch {
X86,
X64,
Arm,
Arm64,
}Expand description
The different architectures supported by the WiX Toolset.
These are also the valid values for the -arch option to the WiX compiler
(candle.exe).
Variants§
X86
The x86 32-bit architecture.
X64
The x86_64 or AMD64 64-bit architecture.
Arm
The ARM 32-bit architecture.
Arm64
The ARM 64-bit architecture.
Trait Implementations§
impl Eq for WixArch
impl StructuralPartialEq for WixArch
Auto Trait Implementations§
impl Freeze for WixArch
impl RefUnwindSafe for WixArch
impl Send for WixArch
impl Sync for WixArch
impl Unpin for WixArch
impl UnwindSafe for WixArch
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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more