Enum voicemeeter::LoadError
source · #[non_exhaustive]pub enum LoadError {
AlreadyLoaded,
LoadingError(Error),
RemoteFileError(RemoteFileError),
}
Expand description
Load error while loading the Voicemeeter remote DLL
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.
AlreadyLoaded
Remote is already loaded. Not a hard error.
LoadingError(Error)
Error while loading the DLL.
RemoteFileError(RemoteFileError)
Could not locate the dll
Trait Implementations§
source§impl Error for LoadError
impl Error for LoadError
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<LoadError> for InitializationError
Available on crate feature interface
only.
impl From<LoadError> for InitializationError
Available on crate feature
interface
only.source§impl From<RemoteFileError> for LoadError
impl From<RemoteFileError> for LoadError
source§fn from(source: RemoteFileError) -> Self
fn from(source: RemoteFileError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for LoadError
impl Send for LoadError
impl Sync for LoadError
impl Unpin for LoadError
impl !UnwindSafe for LoadError
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