Enum dlopen::Error [] [src]

pub enum Error {
    NullCharacter(NulError),
    OpeningLibraryError(IoError),
    SymbolGettingError(IoError),
    NullSymbol,
}

This is a library-specific error that is returned by all calls to all APIs.

Variants

Provided string could not be coverted into std::ffi::CString because it contained null character.

The library could not be opened.

The symbol could not be obtained.

Value of the symbol was null.

Trait Implementations

impl Debug for Error
[src]

[src]

Formats the value using the given formatter.

impl ErrorTrait for Error
[src]

[src]

A short description of the error. Read more

[src]

The lower-level cause of this error, if any. Read more

impl Display for Error
[src]

[src]

Formats the value using the given formatter. Read more

impl From<NulError> for Error
[src]

[src]

Performs the conversion.