| 46 | } |
| 47 | |
| 48 | pub(crate) trait PersistentQuery: QueryValueDecodable { |
| 49 | type LocalKey<'tcx>: Encodable<crate::serde::EncodeContext<'tcx>>; |
| 50 | |
| 51 | fn into_crate_and_local<'tcx>(key: Self::Key<'tcx>) -> (CrateNum, Self::LocalKey<'tcx>); |
| 52 | } |
| 53 | |
| 54 | pub struct AnalysisCtxt<'tcx> { |
| 55 | pub tcx: TyCtxt<'tcx>, |
nothing calls this directly
no outgoing calls
no test coverage detected