(&self)
| 672 | /// ``` |
| 673 | #[must_use] |
| 674 | pub fn contains<T: Send + Sync + 'static>(&self) -> bool { |
| 675 | self.frames().any(Frame::is::<T>) |
| 676 | } |
| 677 | |
| 678 | /// Searches the frame stack for a context provider `T` and returns the most recent context |
| 679 | /// found. |
no test coverage detected