Trait rg3d_resource::ResourceData[][src]

pub trait ResourceData: 'static + Default + Debug + Visit + Send {
    fn path(&self) -> Cow<'_, Path>;
fn set_path(&mut self, path: PathBuf); }
Expand description

A trait for resource data.

Required methods

Returns path of resource data.

Sets new path to resource data.

Implementors