1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
use std::hash::Hash; use crate::ops::*; /* impl Hash for Box<dyn Op> { fn hash<H: std::hash::Hasher>(&self, mut state: &mut H) { std::hash::Hash::hash(&self.type_id(), state); DynHash::dyn_hash(self, &mut state) } } impl<'a> Hash for &'a dyn Op { fn hash<H: std::hash::Hasher>(&self, mut state: &mut H) { std::hash::Hash::hash(&self.type_id(), state); DynHash::dyn_hash(self, &mut state) } } */ impl Hash for Box<dyn TypedOp> { fn hash<H: std::hash::Hasher>(&self, state: &mut H) { std::hash::Hash::hash(&self.type_id(), state); self.dyn_hash(state) } } impl Hash for Box<dyn PulsedOp> { fn hash<H: std::hash::Hasher>(&self, state: &mut H) { std::hash::Hash::hash(&self.type_id(), state); self.dyn_hash(state) } } /* impl<'a> Hash for &'a dyn PulsedOp { fn hash<H: std::hash::Hasher>(&self, mut state: &mut H) { std::hash::Hash::hash(&self.type_id(), state); DynHash::dyn_hash(self, &mut state) } } */