Trait rlua::ExternalError

source ·
pub trait ExternalError {
    // Required method
    fn to_lua_err(self) -> Error;
}

Required Methods§

Implementors§

source§

impl<E> ExternalError for Ewhere E: Into<Box<dyn StdError + Send + Sync>>,