Trait ExternalError

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

Required Methods§

Implementors§

Source§

impl<E> ExternalError for E
where E: Into<Box<dyn Error + Send + Sync>>,