Enum shared_library::LoadingError [−][src]
pub enum LoadingError {
LibraryNotFound {
descr: String,
},
SymbolNotFound {
symbol: &'static str,
},
}Error that can happen while loading the shared library.
Variants
LibraryNotFoundFields of LibraryNotFound
descr: String |
SymbolNotFoundOne of the symbols could not be found in the library.
Fields of SymbolNotFound
symbol: &'static str | The symbol. |
Trait Implementations
impl Debug for LoadingError[src]
impl Debug for LoadingErrorfn fmt(&self, f: &mut Formatter) -> Result[src]
fn fmt(&self, f: &mut Formatter) -> ResultFormats the value using the given formatter. Read more
impl Clone for LoadingError[src]
impl Clone for LoadingErrorfn clone(&self) -> LoadingError[src]
fn clone(&self) -> LoadingErrorReturns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0
[src]Performs copy-assignment from source. Read more
Auto Trait Implementations
impl Send for LoadingError
impl Send for LoadingErrorimpl Sync for LoadingError
impl Sync for LoadingError