Trait DcsTableExt

Source
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§

Source

fn raw_get_path<T>(&self, path: &Path) -> Result<T>
where T: FromLua<'lua>,

Source

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.

Implementations on Foreign Types§

Source§

impl<'lua> DcsTableExt<'lua> for Table<'lua>

Source§

fn raw_get_path<T>(&self, path: &Path) -> Result<T>
where T: FromLua<'lua>,

Source§

fn get_path<T>(&self, path: &Path) -> Result<T>
where T: FromLua<'lua>,

Implementors§