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

Required Methods§

Implementors§

source§

impl<E> ExternalError for Ewhere E: Into<Box<dyn Error + Send + Sync + 'static, Global>>,