pub trait HostObjOps {
    fn eq(&self, x: &Rc<dyn Any>, y: &Rc<dyn Any>) -> bool;
    fn hash(&self, x: &Rc<dyn Any>) -> u64;
    fn fmt(&self, f: &mut Formatter<'_>, x: &Rc<dyn Any>) -> Result;
}

Required Methods

Implementors

Use the PartialEq, Hash and Debug implementations of the type X.