| 10 | #[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash, Default)] |
| 11 | #[repr(transparent)] |
| 12 | pub struct Static<T: ?Sized>(pub T); |
| 13 | |
| 14 | impl<T: ?Sized + 'static> Rootable<'_> for Static<T> { |
| 15 | type Root = Static<T>; |
no outgoing calls
no test coverage detected