| 84 | fn non_static_type_id<T: ?Sized>() -> TypeId { |
| 85 | use std::marker::PhantomData; |
| 86 | trait NonStaticAny { |
| 87 | fn get_type_id(&self) -> TypeId |
| 88 | where |
| 89 | Self: 'static; |
| 90 | } |
| 91 | impl<T: ?Sized> NonStaticAny for PhantomData<T> { |
| 92 | fn get_type_id(&self) -> TypeId |
| 93 | where |
nothing calls this directly
no outgoing calls
no test coverage detected