logo
pub trait Resource {
    type Path: ResourcePath;
    fn resource_path(&mut self) -> &mut Path<Self::Path>;
}

Associated Types

Type of resource’s path returned in resource_path.

Required methods

Implementors