blob: f79adc8109a7f28a66c22c2e52ed93aa0dfc3529 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//! This module contains `HashStable` implementations for various data types
//! that don't fit into any of the other impls_xxx modules.
impl_stable_hash_for!(enum ::session::search_paths::PathKind {
Native,
Crate,
Dependency,
Framework,
ExternFlag,
All
});
impl_stable_hash_for!(enum ::rustc_target::spec::PanicStrategy {
Abort,
Unwind
});
|