| 32 | /// This is necessary to handle types such as f32, which don't natively implement these |
| 33 | #[derive(Debug)] |
| 34 | struct Value<T>(T); |
| 35 | |
| 36 | impl<T: ToByteSlice> std::hash::Hash for Value<T> { |
| 37 | fn hash<H: std::hash::Hasher>(&self, state: &mut H) { |
no outgoing calls
no test coverage detected