Hello, I am working on a simple viewer and for some purpose, I need Hash for gltf::mesh::Mode. For now, I have a workaround with wrapper struct and manual Hash implementation, however, it's kind of ugly and wordy. My question is it possible to add #[derive(Hash)] for gltf::mesh::Mode?
Hello, I am working on a simple viewer and for some purpose, I need
Hash
forgltf::mesh::Mode
. For now, I have a workaround with wrapper struct and manualHash
implementation, however, it's kind of ugly and wordy. My question is it possible to add#[derive(Hash)]
forgltf::mesh::Mode
?