(&self)
| 700 | /// ``` |
| 701 | #[must_use] |
| 702 | pub fn downcast_ref<T: Send + Sync + 'static>(&self) -> Option<&T> { |
| 703 | self.frames().find_map(Frame::downcast_ref::<T>) |
| 704 | } |
| 705 | |
| 706 | /// Searches the frame stack for an instance of type `T`, returning the most recent one found. |
| 707 | /// |
no test coverage detected