pub enum GuestRegKeyWowSpecEnum {
WowNative,
Wow32,
Wow64,
Other_(String),
}Expand description
This describes the bitness (32-bit or 64-bit) of a registry view in a Windows OS that supports WOW64.
WOW64 (short for Windows 32-bit on Windows 64-bit) is the x86 emulator that allows 32-bit Windows-based applications to run seamlessly on 64-bit Windows. Please refer to these MSDN sites for more details: http://msdn.microsoft.com/en-us/library/aa384249(v=vs.85).aspx and http://msdn.microsoft.com/en-us/library/aa384253(v=vs.85).aspx
Possible values:
WOWNative: Access the key from the native view of the Registry (32-bit on 32-bit versions of Windows, 64-bit on 64-bit versions of Windows).WOW32: Access the key from the 32-bit view of the Registry.WOW64: Access the key from the 64-bit view of the Registry.
Variants§
Implementations§
Trait Implementations§
Source§impl AsRef<str> for GuestRegKeyWowSpecEnum
impl AsRef<str> for GuestRegKeyWowSpecEnum
Source§impl Clone for GuestRegKeyWowSpecEnum
impl Clone for GuestRegKeyWowSpecEnum
Source§fn clone(&self) -> GuestRegKeyWowSpecEnum
fn clone(&self) -> GuestRegKeyWowSpecEnum
Returns a duplicate 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 GuestRegKeyWowSpecEnum
impl Debug for GuestRegKeyWowSpecEnum
Source§impl Deserialize for GuestRegKeyWowSpecEnum
impl Deserialize for GuestRegKeyWowSpecEnum
Source§impl Display for GuestRegKeyWowSpecEnum
impl Display for GuestRegKeyWowSpecEnum
Source§impl<'a> From<&'a GuestRegKeyWowSpecEnum> for &'a str
impl<'a> From<&'a GuestRegKeyWowSpecEnum> for &'a str
Source§fn from(value: &'a GuestRegKeyWowSpecEnum) -> Self
fn from(value: &'a GuestRegKeyWowSpecEnum) -> Self
Converts to this type from the input type.
Source§impl Hash for GuestRegKeyWowSpecEnum
impl Hash for GuestRegKeyWowSpecEnum
Source§impl PartialEq for GuestRegKeyWowSpecEnum
impl PartialEq for GuestRegKeyWowSpecEnum
impl Eq for GuestRegKeyWowSpecEnum
impl StructuralPartialEq for GuestRegKeyWowSpecEnum
Auto Trait Implementations§
impl Freeze for GuestRegKeyWowSpecEnum
impl RefUnwindSafe for GuestRegKeyWowSpecEnum
impl Send for GuestRegKeyWowSpecEnum
impl Sync for GuestRegKeyWowSpecEnum
impl Unpin for GuestRegKeyWowSpecEnum
impl UnsafeUnpin for GuestRegKeyWowSpecEnum
impl UnwindSafe for GuestRegKeyWowSpecEnum
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<To, T> CastInto<To> for T
impl<To, T> CastInto<To> for T
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
Source§impl<T> ToStringFallible for Twhere
T: Display,
impl<T> ToStringFallible for Twhere
T: Display,
Source§fn try_to_string(&self) -> Result<String, TryReserveError>
fn try_to_string(&self) -> Result<String, TryReserveError>
ToString::to_string, but without panic on OOM.