mezzaluna_loaded_features/feature/
disk.rs

1use core::hash::{Hash, Hasher};
2use std::path::{Path, PathBuf};
3
4use same_file::Handle;
5
6#[derive(Debug)]
7pub struct Feature {
8    handle: Handle,
9    path: PathBuf,
10}
11
12impl Feature {
13    pub fn with_handle_and_path(handle: Handle, path: PathBuf) -> Self {
14        Self { handle, path }
15    }
16
17    pub fn path(&self) -> &Path {
18        &self.path
19    }
20}
21
22impl Hash for Feature {
23    fn hash<H: Hasher>(&self, state: &mut H) {
24        self.handle.hash(state);
25    }
26}
27
28impl PartialEq for Feature {
29    fn eq(&self, other: &Self) -> bool {
30        self.handle == other.handle
31    }
32}
33
34impl Eq for Feature {}