pub trait ResolvePath {
    fn resolve_path<'r, 'p>(
        &'r self,
        path: &'p str
    ) -> Result<&'r dyn Reflect, ReflectPathError<'p>>; fn resolve_path_mut<'r, 'p>(
        &'r mut self,
        path: &'p str
    ) -> Result<&'r mut dyn Reflect, ReflectPathError<'p>>; fn get_resolve_path<'r, 'p, T: Reflect>(
        &'r self,
        path: &'p str
    ) -> Result<&'r T, ReflectPathError<'p>> { ... } fn get_resolve_path_mut<'r, 'p, T: Reflect>(
        &'r mut self,
        path: &'p str
    ) -> Result<&'r mut T, ReflectPathError<'p>> { ... } }

Required Methods§

Provided Methods§

Implementors§