logo

Trait bevy::reflect::GetPath[]

pub trait GetPath {
    fn path(
        &'r self,
        path: &'p str
    ) -> Result<&'r (dyn Reflect + 'static), ReflectPathError<'p>>;
fn path_mut(
        &'r mut self,
        path: &'p str
    ) -> Result<&'r mut (dyn Reflect + 'static), ReflectPathError<'p>>; fn get_path<T>(
        &'r self,
        path: &'p str
    ) -> Result<&'r T, ReflectPathError<'p>>
    where
        T: Reflect
, { ... }
fn get_path_mut<T>(
        &'r mut self,
        path: &'p str
    ) -> Result<&'r mut T, ReflectPathError<'p>>
    where
        T: Reflect
, { ... } }

Required methods

Provided methods

Implementors