(&self)
| 75 | /// Returns if `T` is the held context or attachment by this frame. |
| 76 | #[must_use] |
| 77 | pub fn is<T: Send + Sync + 'static>(&self) -> bool { |
| 78 | self.frame.as_any().is::<T>() |
| 79 | } |
| 80 | |
| 81 | /// Downcasts this frame if the held context or attachment is the same as `T`. |
| 82 | #[must_use] |
no test coverage detected