Enum voicemeeter::RegistryError
source · #[non_exhaustive]pub enum RegistryError {
CouldNotFindUninstallReg(Error),
CouldNotFindVM(Error),
CouldNotFindUninstallString,
UninstallStringInvalid(String),
}
Expand description
Registry errors
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.
CouldNotFindUninstallReg(Error)
Could not find the uninstall folder in HKLM for 32-bit apps
CouldNotFindVM(Error)
Could not find voicemeeter in uninstall registry
CouldNotFindUninstallString
Could not find voicemeeter uninstall string in registry
UninstallStringInvalid(String)
Given uninstall exe is not a valid path
Trait Implementations§
source§impl Debug for RegistryError
impl Debug for RegistryError
source§impl Display for RegistryError
impl Display for RegistryError
source§impl Error for RegistryError
impl Error for RegistryError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<RegistryError> for RemoteFileError
impl From<RegistryError> for RemoteFileError
source§fn from(source: RegistryError) -> Self
fn from(source: RegistryError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for RegistryError
impl Send for RegistryError
impl Sync for RegistryError
impl Unpin for RegistryError
impl !UnwindSafe for RegistryError
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