(&self)
| 446 | /// Panics if `self` is not a (nullable) `anyref`. |
| 447 | #[inline] |
| 448 | pub fn unwrap_anyref(&self) -> Option<&Rooted<AnyRef>> { |
| 449 | self.anyref().expect("expected anyref") |
| 450 | } |
| 451 | |
| 452 | /// Attempt to access the underlying `exnref` value of this `Val`. |
| 453 | /// |