#[non_exhaustive]pub enum Wow64Redirection {
Disabled,
}Expand description
What to do with WOW64 filesystem redirection.
Only Disabled is expressible, because Windows offers no
way to enable redirection that was never disabled, and no way to read the
current state. The enum exists rather than a bare bool so that a later
capability does not change the meaning of an existing value.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Disabled
Disable redirection for the operation, restoring it afterwards.
Trait Implementations§
Source§impl Clone for Wow64Redirection
impl Clone for Wow64Redirection
Source§fn clone(&self) -> Wow64Redirection
fn clone(&self) -> Wow64Redirection
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 moreimpl Copy for Wow64Redirection
Source§impl Debug for Wow64Redirection
impl Debug for Wow64Redirection
impl Eq for Wow64Redirection
Source§impl Hash for Wow64Redirection
impl Hash for Wow64Redirection
Source§impl PartialEq for Wow64Redirection
impl PartialEq for Wow64Redirection
impl StructuralPartialEq for Wow64Redirection
Auto Trait Implementations§
impl Freeze for Wow64Redirection
impl RefUnwindSafe for Wow64Redirection
impl Send for Wow64Redirection
impl Sync for Wow64Redirection
impl Unpin for Wow64Redirection
impl UnsafeUnpin for Wow64Redirection
impl UnwindSafe for Wow64Redirection
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