Enum dlib::LibLoadingError [−][src]
#[non_exhaustive]
pub enum LibLoadingError {
Show 17 variants
DlOpen {
desc: DlDescription,
},
DlOpenUnknown,
DlSym {
desc: DlDescription,
},
DlSymUnknown,
DlClose {
desc: DlDescription,
},
DlCloseUnknown,
LoadLibraryExW {
source: WindowsError,
},
LoadLibraryExWUnknown,
GetModuleHandleExW {
source: WindowsError,
},
GetModuleHandleExWUnknown,
GetProcAddress {
source: WindowsError,
},
GetProcAddressUnknown,
FreeLibrary {
source: WindowsError,
},
FreeLibraryUnknown,
IncompatibleSize,
CreateCString {
source: NulError,
},
CreateCStringWithTrailing {
source: FromBytesWithNulError,
},
}
Expand description
Errors.
Variants (Non-exhaustive)
This enum is marked as non-exhaustive
DlOpen
The dlopen
call failed.
DlOpenUnknown
The dlopen
call failed and system did not report an error.
DlSym
The dlsym
call failed.
DlSymUnknown
The dlsym
call failed and system did not report an error.
DlClose
The dlclose
call failed.
DlCloseUnknown
The dlclose
call failed and system did not report an error.
LoadLibraryExW
The LoadLibraryW
call failed.
LoadLibraryExWUnknown
The LoadLibraryW
call failed and system did not report an error.
GetModuleHandleExW
The GetModuleHandleExW
call failed.
GetModuleHandleExWUnknown
The GetModuleHandleExW
call failed and system did not report an error.
GetProcAddress
The GetProcAddress
call failed.
GetProcAddressUnknown
The GetProcAddressUnknown
call failed and system did not report an error.
FreeLibrary
The FreeLibrary
call failed.
FreeLibraryUnknown
The FreeLibrary
call failed and system did not report an error.
IncompatibleSize
The requested type cannot possibly work.
CreateCString
Fields
source: NulError
The source error.
Could not create a new CString.
CreateCStringWithTrailing
Fields
source: FromBytesWithNulError
The source error.
Could not create a new CString from bytes with trailing null.