logo
pub trait Resource {
    type Path: ResourcePath;

    fn resource_path(&mut self) -> &mut Path<Self::Path>;
}

Required Associated Types

Type of resource’s path returned in resource_path.

Required Methods

Implementors