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.

Required Methods§

Source

fn dyn_hash(&self, _state: &mut dyn Hasher)

Implementors§

Source§

impl<T: Hash + Any> DynHash for T