(path: P)
| 18 | |
| 19 | impl HashFilter { |
| 20 | pub fn open<P: AsRef<Path>>(path: P) -> Self { |
| 21 | Self { |
| 22 | path: Some(path.as_ref().to_owned()), |
| 23 | ..Self::default() |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | pub fn set_backing<P: AsRef<Path>>(&mut self, path: P) { |
| 28 | self.path = Some(path.as_ref().to_owned()); |
no outgoing calls
no test coverage detected