Downcast this value to its concrete type.
(&self)
| 34 | |
| 35 | /// Downcast this value to its concrete type. |
| 36 | pub(crate) fn as_ref<T: PartialEq + 'static>(&self) -> Option<&T> { |
| 37 | self.as_any().downcast_ref::<T>() |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | impl PartialEq for RcPartialEqValue { |
no test coverage detected