Enum snek::Error [] [src]

pub enum Error {
    LibraryLoadError(String),
    SymbolLoadError(String),
}

This enum stores information about the error returned when loading a library or symbol fails. On unix platforms, it hold the result of dlerror().

Variants

LibraryLoadError(String)SymbolLoadError(String)

Trait Implementations

impl Debug for Error
[src]

fn fmt(&self, __arg_0: &mut Formatter) -> Result

Formats the value using the given formatter.