Trait ExternalError

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

Required Methods§

Implementors§

Source§

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