pub trait DcsTableExt<'lua> {
// Required methods
fn raw_get_path<T>(&self, path: &Path) -> Result<T>
where T: FromLua<'lua>;
fn get_path<T>(&self, path: &Path) -> Result<T>
where T: FromLua<'lua>;
}
Required Methods§
fn raw_get_path<T>(&self, path: &Path) -> Result<T>where
T: FromLua<'lua>,
fn get_path<T>(&self, path: &Path) -> Result<T>where
T: FromLua<'lua>,
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.