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