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]

Formats the value using the given formatter. Read more

impl ErrorTrait for Error
[src]

This method is soft-deprecated. Read more

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

impl Display for Error
[src]

Formats the value using the given formatter. Read more

impl From<NulError> for Error
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for Error

impl Sync for Error