blob: 8a388fafce5e8201717ca6262683abdb7dcc3f3d (
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 crate::session::search_paths::PathKind {
Native,
Crate,
Dependency,
Framework,
ExternFlag,
All
});
impl_stable_hash_for!(enum ::rustc_target::spec::PanicStrategy {
Abort,
Unwind
});
|