pub trait DynHash {
// Required method
fn dyn_hash(&self, _state: &mut dyn Hasher);
}
Expand description
PhysicalExpr
can’t be constrained by Hash
directly because it must remain
object safe. To ease implementation blanket implementation is provided for Hash
types.